payme: fix version number string (#297480)

This commit is contained in:
Simon Schoeters 2024-03-22 13:55:44 +01:00 committed by GitHub
parent b5ff22d5e0
commit 506939e98c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 1 deletions

View File

@ -8,11 +8,27 @@ buildGoModule rec {
owner = "jovandeginste";
repo = "payme";
rev = "v${version}";
hash = "sha256-WE/sAs0VSeb5UKkUy1iyjyXtgDmlQhdZkw8HMMSbQiE=";
hash = "sha256-2gZgmYgLaJQRQ+3VOUDnMm5QBjfKyxyutVf9NrbGO3g=";
leaveDotGit = true;
postFetch = ''
cd "$out"
git rev-parse HEAD > $out/COMMIT
find "$out" -name .git -print0 | xargs -0 rm -rf
'';
};
vendorHash = null;
ldflags = [
"-s"
"-w"
"-X main.gitRefName=${src.rev}"
];
preBuild = ''
ldflags+=" -X main.gitCommit=$(cat COMMIT)"
'';
meta = {
description = "QR code generator (ASCII & PNG) for SEPA payments";
mainProgram = "payme";