about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-14 00:40:47 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-02-14 00:40:47 +0100
commit286f8cdbfc507fa53822ce8228fd54bf71c74ac4 (patch)
treee9ff22af545e695b03b133d017558da5f2f06f88 /pkgs/tools/security
parentd434f1486e54e23afd5c2a590512a15b42e2e4e2 (diff)
parent9e38b82d7ce19a6f724c0830130d6f8dcf8c1738 (diff)
Merge branch 'master' into staging-next
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/hcxtools/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/hcxtools/default.nix b/pkgs/tools/security/hcxtools/default.nix
index a1ba32b35ed7e..20e28fa125387 100644
--- a/pkgs/tools/security/hcxtools/default.nix
+++ b/pkgs/tools/security/hcxtools/default.nix
@@ -1,16 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, curl, openssl, zlib }:
+{ lib, stdenv, fetchFromGitHub, pkg-config, curl, openssl, zlib }:
 
 stdenv.mkDerivation rec {
   pname = "hcxtools";
-  version = "6.0.3";
+  version = "6.1.5";
 
   src = fetchFromGitHub {
     owner = "ZerBea";
     repo = pname;
     rev = version;
-    sha256 = "0s9l5mvzcv6hnj7h28piabnm66b09hk2l57vb85ny35w99hzpkc0";
+    sha256 = "1xvr89r6287788bx5qbw9sr8jvmajps0rpc7fvh9bfzb6zw2rq6w";
   };
 
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ curl openssl zlib ];
 
   makeFlags = [