about summary refs log tree commit diff
path: root/pkgs/tools/networking/curl/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-05-27 15:37:04 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-05-27 15:58:40 +0200
commite4832c754114c5660909546ac749475bf63ff06e (patch)
treefe77400566603caa218453ad5c7b6b9b5ea9715c /pkgs/tools/networking/curl/default.nix
parent60a890e35bc94ace092a2ec278534979fe6ee361 (diff)
parentdc13593b9fad3ea3728e2fd32f90841d5ec7662d (diff)
downloadnixlib-e4832c754114c5660909546ac749475bf63ff06e.tar
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.gz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.bz2
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.lz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.xz
nixlib-e4832c754114c5660909546ac749475bf63ff06e.tar.zst
nixlib-e4832c754114c5660909546ac749475bf63ff06e.zip
Merge branch 'staging'
Includes a security update of libxml2.
Diffstat (limited to 'pkgs/tools/networking/curl/default.nix')
-rw-r--r--pkgs/tools/networking/curl/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 47f03cc37477..f2e6117966f0 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -51,11 +51,11 @@ stdenv.mkDerivation rec {
   configureFlags = [
       "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
       "--disable-manual"
-      ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
-      ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
+      ( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
+      ( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
       ( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
       ( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
-      ( if idnSupport then "--with-libidn=${libidn}" else "--without-libidn" )
+      ( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
     ]
     ++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
     ++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";