Add optional scp support to curl

svn path=/nixpkgs/trunk/; revision=22976
This commit is contained in:
Yury G. Kudryashov
2010-08-05 21:06:45 +00:00
parent 217209747b
commit 80108f291b
2 changed files with 8 additions and 5 deletions
+4 -2
View File
@@ -1,6 +1,7 @@
{ stdenv, fetchurl
, zlibSupport ? false, zlib ? null
, sslSupport ? false, openssl ? null
, zlibSupport ? false, zlib
, sslSupport ? false, openssl
, scpSupport ? false, libssh2
, linkStatic ? false
}:
@@ -24,6 +25,7 @@ stdenv.mkDerivation rec {
configureFlags = ''
${if sslSupport then "--with-ssl=${openssl}" else "--without-ssl"}
${if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2"}
${if linkStatic then "--enable-static --disable-shared" else ""}
'';