Merge pull request #326602 from mgit-at/pwru-fix

pwru: 1.0.6 -> 1.0.7, fix build
This commit is contained in:
Nick Cao 2024-07-12 16:31:17 -04:00 committed by GitHub
commit 495199a81b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
'';