summary refs log tree commit diff
path: root/pkgs/applications/science/misc/root/5.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-09-30 03:42:56 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:46 +0200
commit6264d9461670ec4d8e43a3b9cd906c1d1da6d403 (patch)
tree4f872455ffe328edf4c32ad5ca82184e483c04d0 /pkgs/applications/science/misc/root/5.nix
parentbcdde95c79c94906ab8693fdd601bb72394d9357 (diff)
downloadnixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar.gz
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar.bz2
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar.lz
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar.xz
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.tar.zst
nixpkgs-6264d9461670ec4d8e43a3b9cd906c1d1da6d403.zip
root5: fix build with libxcrypt
Diffstat (limited to 'pkgs/applications/science/misc/root/5.nix')
-rw-r--r--pkgs/applications/science/misc/root/5.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/science/misc/root/5.nix b/pkgs/applications/science/misc/root/5.nix
index 84443645865..1b4d6bcd048 100644
--- a/pkgs/applications/science/misc/root/5.nix
+++ b/pkgs/applications/science/misc/root/5.nix
@@ -14,6 +14,7 @@
 , libGL
 , zlib
 , libxml2
+, libxcrypt
 , lz4
 , xz
 , gsl_1
@@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [ pcre python2 zlib libxml2 lz4 xz gsl_1 xxHash ]
+  buildInputs = [ pcre python2 zlib libxml2 lz4 xz gsl_1 xxHash libxcrypt ]
     ++ lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ]
     ++ lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
   ;