summary refs log tree commit diff
path: root/pkgs/tools/networking/curl
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:44:32 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:02:23 +0200
commit2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33 (patch)
tree7df642b3d8c4882ea468cb53579882f9918fb114 /pkgs/tools/networking/curl
parent5eb01cd0adc3d5dfe1e81abac288d9764ef7e4d9 (diff)
downloadnixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.gz
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.bz2
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.lz
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.xz
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.tar.zst
nixlib-2a73de6e6c7899e34b8cd8f3a625e7c18d3ead33.zip
treewide: Make explicit that 'dev' output of openssl is used
Diffstat (limited to 'pkgs/tools/networking/curl')
-rw-r--r--pkgs/tools/networking/curl/7.15.nix2
-rw-r--r--pkgs/tools/networking/curl/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/curl/7.15.nix b/pkgs/tools/networking/curl/7.15.nix
index 06106c62b4ea..c3c16cc08b44 100644
--- a/pkgs/tools/networking/curl/7.15.nix
+++ b/pkgs/tools/networking/curl/7.15.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
       "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt"
-      ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
+      ( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
       ( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
     ]
     ++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index d313b9b4dc34..f2e6117966f0 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -51,7 +51,7 @@ 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 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" )