3
0
Fork 0
forked from mirrors/nixpkgs

lsh: Assume UNIX98 PTYs are available.

svn path=/nixpkgs/trunk/; revision=33627
This commit is contained in:
Ludovic Courtès 2012-04-05 16:26:44 +00:00
parent e78a048265
commit 6caf0820f9

View file

@ -22,6 +22,11 @@ stdenv.mkDerivation rec {
s|/usr/bin/df|$(type -P df)|g ;
s|/usr/bin/ipcs|$(type -P ipcs)|g ;
s|/usr/bin/uptime|$(type -P uptime)|g"
# Skip the `configure' script that checks whether /dev/ptmx & co. work as
# expected, because it relies on impurities (for instance, /dev/pts may
# be unavailable in chroots.)
export lsh_cv_sys_unix98_ptys=yes
'';
buildInputs = [ gperf guile gmp zlib liboop readline gnum4 pam ];