pwru: 1.0.6 -> 1.0.7, fix build

This commit is contained in:
Maciej Krüger 2024-07-12 18:38:38 +02:00
parent 8ba87fc136
commit 647e4c04ad
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F

View File

@ -7,13 +7,13 @@
buildGoModule rec {
pname = "pwru";
version = "1.0.6";
version = "1.0.7";
src = fetchFromGitHub {
owner = "cilium";
repo = "pwru";
rev = "v${version}";
hash = "sha256-8pXyzmzMCxOzwstzvzeZB2HBMeMzGMLZesTURZD3Rt8=";
hash = "sha256-BjiFuM06YDlPyB578p2hweBay+4z0bOn7fUoxSvrDY8=";
};
vendorHash = null;
@ -27,6 +27,9 @@ buildGoModule rec {
--replace "-static" ""
'';
# this breaks go generate as bpf does not support -fzero-call-used-regs=used-gpr
hardeningDisable = [ "zerocallusedregs" ];
preBuild = ''
TARGET_GOARCH="$GOARCH" GOOS= GOARCH= go generate
'';