mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
92 lines
2.1 KiB
Nix
92 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenvNoCC,
|
|
nodejs,
|
|
fetchNpmDeps,
|
|
buildPackages,
|
|
php83,
|
|
nixosTests,
|
|
nix-update-script,
|
|
dataDir ? "/var/lib/firefly-iii-data-importer",
|
|
}:
|
|
|
|
let
|
|
pname = "firefly-iii-data-importer";
|
|
version = "1.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "firefly-iii";
|
|
repo = "data-importer";
|
|
rev = "v${version}";
|
|
hash = "sha256-IIlcOGulcBJsYz7Yx3YWV/c6yvb8+82AvFghQ05dUcI=";
|
|
};
|
|
in
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
inherit pname src version;
|
|
|
|
buildInputs = [ php83 ];
|
|
|
|
nativeBuildInputs = [
|
|
nodejs
|
|
nodejs.python
|
|
buildPackages.npmHooks.npmConfigHook
|
|
php83.composerHooks.composerInstallHook
|
|
php83.packages.composer-local-repo-plugin
|
|
];
|
|
|
|
composerNoDev = true;
|
|
composerNoPlugins = true;
|
|
composerNoScripts = true;
|
|
composerStrictValidation = true;
|
|
strictDeps = true;
|
|
|
|
vendorHash = "sha256-j1rCcHt5E1aFwgnOKZZccaGPs5JfpBtN05edeSvId94=";
|
|
|
|
npmDeps = fetchNpmDeps {
|
|
inherit src;
|
|
name = "${pname}-npm-deps";
|
|
hash = "sha256-mdBQubfV5Bgk9NxsWokTS6zA4r3gggWVSwhrfKPUi5s=";
|
|
};
|
|
|
|
composerRepository = php83.mkComposerRepository {
|
|
inherit (finalAttrs)
|
|
pname
|
|
src
|
|
vendorHash
|
|
version
|
|
;
|
|
composerNoDev = true;
|
|
composerNoPlugins = true;
|
|
composerNoScripts = true;
|
|
composerStrictValidation = true;
|
|
};
|
|
|
|
preInstall = ''
|
|
npm run build --workspace=v2
|
|
'';
|
|
|
|
passthru = {
|
|
phpPackage = php83;
|
|
tests = nixosTests.firefly-iii-data-importer;
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
postInstall = ''
|
|
rm -R $out/share/php/firefly-iii-data-importer/{storage,bootstrap/cache,node_modules}
|
|
mv $out/share/php/firefly-iii-data-importer/* $out/
|
|
rm -R $out/share
|
|
ln -s ${dataDir}/storage $out/storage
|
|
ln -s ${dataDir}/cache $out/bootstrap/cache
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/firefly-iii/data-importer/releases/tag/v${version}";
|
|
description = "Firefly III Data Importer can import data into Firefly III.";
|
|
homepage = "https://github.com/firefly-iii/data-importer";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = [ lib.maintainers.savyajha ];
|
|
};
|
|
})
|