Unverified Commit 495199a8 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

pwru: 1.0.6 -> 1.0.7, fix build
parents 89822fd8 647e4c04
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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
  '';