tcsh: fix build with libxcrypt

This commit is contained in:
Martin Weinelt 2022-09-29 17:29:47 +02:00
parent 2a7df1adc8
commit 870b0ebd13
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,6 +2,7 @@
, stdenv
, fetchurl
, fetchpatch
, libxcrypt
, ncurses
}:
@ -16,6 +17,7 @@ stdenv.mkDerivation rec {
strictDeps = true;
buildInputs = [
libxcrypt
ncurses
];