From 4d6eb52bb70277b4fc0e37088c0e7f61b99e2a26 Mon Sep 17 00:00:00 2001 From: Stanisław Pitucha Date: Sat, 17 Sep 2022 13:00:08 +1000 Subject: sx-go: fix darwin build --- pkgs/tools/security/sx-go/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'pkgs/tools/security/sx-go') diff --git a/pkgs/tools/security/sx-go/default.nix b/pkgs/tools/security/sx-go/default.nix index 76ed8a7d55c13..626851b1824fd 100644 --- a/pkgs/tools/security/sx-go/default.nix +++ b/pkgs/tools/security/sx-go/default.nix @@ -2,6 +2,7 @@ , lib , buildGoModule , fetchFromGitHub +, fetchpatch , libpcap }: @@ -18,6 +19,16 @@ buildGoModule rec { vendorSha256 = "sha256-TWRMNt6x8zuvhP1nz4R6IVCX+9HityvVpzxRhDiMyO4="; + patches = [ + # Fix darwin builds: + # https://github.com/v-byte-cpu/sx/pull/120 + (fetchpatch { + name = "non-linux-method-signature.patch"; + url = "https://github.com/v-byte-cpu/sx/commit/56457bfaa49eb6fbb7a33d7092d9c636b9c85895.patch"; + hash = "sha256-0lCu3tZ0fEiC7qWfk1APLVwwrK9eovbVa/yG7OuXEWQ="; + }) + ]; + buildInputs = [ libpcap ]; @@ -28,7 +39,6 @@ buildGoModule rec { ''; meta = with lib; { - broken = stdenv.isDarwin; description = "Command-line network scanner"; homepage = "https://github.com/v-byte-cpu/sx"; license = licenses.mit; -- cgit 1.4.1