about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:36:27 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:00:42 +0200
commit62479404ea1049beabfe4fd0f6e8c22ed60bf19a (patch)
treea8894154a6c5491f72786320327394953f84438f /pkgs/tools
parent5898f3bad89245bdd39ab377093655100fd275ec (diff)
downloadnixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar.gz
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar.bz2
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar.lz
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar.xz
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.tar.zst
nixlib-62479404ea1049beabfe4fd0f6e8c22ed60bf19a.zip
treewide: Make explicit that 'dev' output of libidn is used
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/curl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 47f03cc37477..ec4c1f793080 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
       ( if scpSupport then "--with-libssh2=${libssh2}" 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}";