about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/dcap/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/networking/dcap/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/networking/dcap/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/tools/networking/dcap/default.nix b/nixpkgs/pkgs/tools/networking/dcap/default.nix
index f606c3f6cd6a..4045748fc447 100644
--- a/nixpkgs/pkgs/tools/networking/dcap/default.nix
+++ b/nixpkgs/pkgs/tools/networking/dcap/default.nix
@@ -6,20 +6,21 @@
 , libtool
 , zlib
 , cunit
+, libxcrypt
 }:
 stdenv.mkDerivation rec {
   pname = "dcap";
-  version = "2.47.12";
+  version = "2.47.14";
 
   src = fetchFromGitHub {
     owner = "dCache";
     repo = "dcap";
     rev = version;
-    sha256 = "sha256-pNLEN1YLQGMJNuv8n6bec3qONbwNOYbYDDvkwuP5AR4=";
+    sha256 = "sha256-hn4nkFTIbSUUhvf9UfsEqVhphAdNWmATaCrv8jOuC0Y=";
   };
 
   nativeBuildInputs = [ autoconf automake libtool ];
-  buildInputs = [ zlib ];
+  buildInputs = [ zlib libxcrypt ];
 
   preConfigure = ''
     patchShebangs bootstrap.sh
@@ -28,7 +29,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
-  checkInputs = [ cunit ];
+  nativeCheckInputs = [ cunit ];
 
   outputs = [ "bin" "dev" "out" "man" "doc" ];