Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "double-entry-generator";
|
|
version = "2.11.0";
|
|
src = fetchFromGitHub {
|
|
owner = "deb-sig";
|
|
repo = "double-entry-generator";
|
|
hash = "sha256-tHJwn1G/2wySnKpF+P0tyOu3mYk8zD9D301kxrWaWws=";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
vendorHash = "sha256-CJ+mfH9qJXYhicxrL9+i8H6CVKZua40D1/Sg3vWQs68=";
|
|
|
|
excludedPackages = [ "hack" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/deb-sig/double-entry-generator/pkg/version.VERSION=${version}"
|
|
"-X=github.com/deb-sig/double-entry-generator/pkg/version.REPOROOT=github.com/deb-sig/double-entry-generator"
|
|
"-X=github.com/deb-sig/double-entry-generator/pkg/version.COMMIT=${src.rev}"
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
touch build-local
|
|
ln -s $out/bin ./
|
|
make SHELL=bash GIT_COMMIT= VERSION= DOCKER_LABELS= -o test-go test
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Rule-based double-entry bookkeeping importer (from Alipay/WeChat/Huobi etc. to Beancount/Ledger)";
|
|
homepage = "https://github.com/deb-sig/double-entry-generator";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ rennsax ];
|
|
mainProgram = "double-entry-generator";
|
|
};
|
|
}
|