summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-29 17:29:47 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-10-09 18:10:37 +0200
commit870b0ebd13514e4629460d3742c563ef01996c37 (patch)
tree23ffd756cb9ab3f4766c9aa5171456136d786d27
parent2a7df1adc851f3f78efe797ec5d8dd998d9786e3 (diff)
downloadnixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar.gz
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar.bz2
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar.lz
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar.xz
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.tar.zst
nixpkgs-870b0ebd13514e4629460d3742c563ef01996c37.zip
tcsh: fix build with libxcrypt
-rw-r--r--pkgs/shells/tcsh/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
index 4fac6eb13d6..8ca3eb5a9ee 100644
--- a/pkgs/shells/tcsh/default.nix
+++ b/pkgs/shells/tcsh/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , fetchurl
 , fetchpatch
+, libxcrypt
 , ncurses
 }:
 
@@ -16,6 +17,7 @@ stdenv.mkDerivation rec {
 
   strictDeps = true;
   buildInputs = [
+    libxcrypt
     ncurses
   ];