snicat: set ldflags

This commit is contained in:
Aaron Jheng 2024-02-06 23:17:47 +08:00
parent 5a072b4a9d
commit 6f0036ddc2
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,5 +1,4 @@
{ lib
, stdenv
, buildGoPackage
, fetchFromGitHub
}:
@ -14,19 +13,12 @@ buildGoPackage rec {
hash = "sha256-fFlTBOz127le2Y7F9KKhbcldcyFEpAU5QiJ4VCAPs9Y=";
};
patchPhase = ''
runHook prePatch
substituteInPlace snicat.go \
--replace-warn "v0.0.0" "v${version}"
runHook postPatch
'';
goPackagePath = "github.com/CTFd/snicat";
goDeps = ./deps.nix;
ldflags = [ "-s" "-w" "-X main.version=v${version}" ];
installPhase = ''
runHook preInstall