mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
parent
0571d80df6
commit
f4f3078309
1 changed files with 1 additions and 1 deletions
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue