summary refs log tree commit diff
path: root/pkgs/tools/networking/curl
diff options
context:
space:
mode:
authorDanny Wilson <danny@decube.net>2014-08-23 04:26:04 +0200
committerDanny Wilson <danny@prime.vc>2015-11-16 17:20:13 +0100
commite9d6da77cdda475d225e6b23f558005c7cc1ca20 (patch)
treee4e5122647ca85e55eadbb88c7860c228db75471 /pkgs/tools/networking/curl
parent15c676fd30c52dc93009ec09ed069746f11d1743 (diff)
downloadnixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar.gz
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar.bz2
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar.lz
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar.xz
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.tar.zst
nixlib-e9d6da77cdda475d225e6b23f558005c7cc1ca20.zip
Fix non-chrooted (stdenv-native) builds that have `man` on path enabling
building of built-in manual, while chrooted builds (hydra) will not…
Diffstat (limited to 'pkgs/tools/networking/curl')
-rw-r--r--pkgs/tools/networking/curl/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index 14687817835a..3c77d2a6c8d6 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -47,6 +47,7 @@ stdenv.mkDerivation rec {
   '';
 
   configureFlags = [
+      "--disable-manual"
       ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
       ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
       ( if ldapSupport then "--enable-ldap" else "--disable-ldap" )