mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildNpmPackage
|
|
, php83
|
|
, nixosTests
|
|
, dataDir ? "/var/lib/firefly-iii"
|
|
}:
|
|
|
|
let
|
|
pname = "firefly-iii";
|
|
version = "6.1.18";
|
|
phpPackage = php83;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firefly-iii";
|
|
repo = "firefly-iii";
|
|
rev = "v${version}";
|
|
hash = "sha256-mA7gvKhHouUUz1Aix7253O/+VcufoEFwdcJeZxnazEo=";
|
|
};
|
|
|
|
assets = buildNpmPackage {
|
|
pname = "${pname}-assets";
|
|
inherit version src;
|
|
npmDepsHash = "sha256-MoxkNxfVeIFkiNVzfehQ9FpC65kBj8ZmvwaRf4MVRIg=";
|
|
dontNpmBuild = true;
|
|
installPhase = ''
|
|
runHook preInstall
|
|
npm run prod --workspace=v1
|
|
npm run build --workspace=v2
|
|
cp -r ./public $out/
|
|
runHook postInstall
|
|
'';
|
|
};
|
|
in
|
|
|
|
phpPackage.buildComposerProject (finalAttrs: {
|
|
inherit pname src version;
|
|
|
|
vendorHash = "sha256-EpMypgj6lZDz6T94bGoCUH9IVwh7VB4Ds08AcCsreRw=";
|
|
|
|
passthru = {
|
|
inherit phpPackage;
|
|
tests = nixosTests.firefly-iii;
|
|
};
|
|
|
|
postInstall = ''
|
|
mv $out/share/php/${pname}/* $out/
|
|
rm -R $out/share $out/storage $out/bootstrap/cache $out/public
|
|
cp -a ${assets} $out/public
|
|
ln -s ${dataDir}/storage $out/storage
|
|
ln -s ${dataDir}/cache $out/bootstrap/cache
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/firefly-iii/firefly-iii/releases/tag/v${version}";
|
|
description = "Firefly III: a personal finances manager";
|
|
homepage = "https://github.com/firefly-iii/firefly-iii";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = [ lib.maintainers.savyajha ];
|
|
};
|
|
})
|