payme: 1.2.0 -> 1.2.2

This commit is contained in:
Simon Schoeters 2024-05-02 19:29:06 +02:00
parent a50a194359
commit a59ea1b6c1

View File

@ -2,17 +2,18 @@
buildGoModule rec {
pname = "payme";
version = "1.2.0";
version = "1.2.2";
src = fetchFromGitHub {
owner = "jovandeginste";
repo = "payme";
rev = "v${version}";
hash = "sha256-2gZgmYgLaJQRQ+3VOUDnMm5QBjfKyxyutVf9NrbGO3g=";
hash = "sha256-LZyTwi4VCetIF39yc7WU3VR20DfFxfhDr3FvVQo7b/Q=";
leaveDotGit = true;
postFetch = ''
cd "$out"
git rev-parse HEAD > $out/COMMIT
TZ=UTC0 git show --quiet --date=iso-local --format=%cd > $out/BUILD_TIME
find "$out" -name .git -print0 | xargs -0 rm -rf
'';
};
@ -27,6 +28,7 @@ buildGoModule rec {
preBuild = ''
ldflags+=" -X main.gitCommit=$(cat COMMIT)"
ldflags+=" -X 'main.buildTime=$(cat BUILD_TIME)'"
'';
meta = {