pkgs/top-level/all-packages.nix: curl cannot support scp on Solaris because libssh2 doesn't compile

svn path=/nixpkgs/trunk/; revision=22998
This commit is contained in:
Peter Simons 2010-08-06 12:45:58 +00:00
parent 0571d80df6
commit f4f3078309

View file

@ -479,7 +479,7 @@ let
inherit stdenv zlib openssl libssh2;
zlibSupport = ! ((stdenv ? isDietLibC) || (stdenv ? isStatic));
sslSupport = zlibSupport;
scpSupport = zlibSupport;
scpSupport = zlibSupport && (!stdenv.isSunOS);
};
curlftpfs = callPackage ../tools/filesystems/curlftpfs { };