mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
screen: fix build with libxcrypt
This commit is contained in:
parent
057ae3d0f1
commit
be9bc07aa1
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchurl, autoreconfHook, ncurses, utmp, pam ? null }:
|
{ lib, stdenv, fetchurl, autoreconfHook, ncurses, libxcrypt, utmp, pam ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "screen";
|
pname = "screen";
|
||||||
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
ncurses
|
ncurses
|
||||||
|
libxcrypt
|
||||||
] ++ lib.optional stdenv.isLinux pam
|
] ++ lib.optional stdenv.isLinux pam
|
||||||
++ lib.optional stdenv.isDarwin utmp;
|
++ lib.optional stdenv.isDarwin utmp;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user