about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorVladyslav M <dywedir@gra.red>2021-02-13 11:24:33 +0200
committerVladyslav M <dywedir@gra.red>2021-02-13 11:24:33 +0200
commit8186e40fcc48663273980006d3ffc7f6293badf5 (patch)
tree510db63ff7428929b965a1a2881f5029f39c2e48 /pkgs/tools/security
parent3bcfa06742d898db46962166088fbfbe0170dff6 (diff)
hcxtools: 6.0.3 -> 6.1.5
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 = [