Commit a59ea1b6 authored by Simon Schoeters's avatar Simon Schoeters
Browse files

payme: 1.2.0 -> 1.2.2

parent a50a1943
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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 = {