screen: fix build with libxcrypt
This commit is contained in:
parent
057ae3d0f1
commit
be9bc07aa1
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchurl, autoreconfHook, ncurses, utmp, pam ? null }:
|
||||
{ lib, stdenv, fetchurl, autoreconfHook, ncurses, libxcrypt, utmp, pam ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "screen";
|
||||
|
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
|||
];
|
||||
buildInputs = [
|
||||
ncurses
|
||||
libxcrypt
|
||||
] ++ lib.optional stdenv.isLinux pam
|
||||
++ lib.optional stdenv.isDarwin utmp;
|
||||
|
||||
|
|
Loading…
Reference in a new issue