Revert "curl: Modernize build"

This reverts commit 5e3fe3916a1aef6c2b441d9009f8a8d7f14030d6.
This commit is contained in:
Eelco Dolstra 2015-06-02 11:32:28 +02:00
parent 68493cd8dc
commit cde5053d9a
4 changed files with 86 additions and 122 deletions

View File

@ -92,7 +92,11 @@ rec {
aclSupport = false; aclSupport = false;
})).crossDrv; })).crossDrv;
curl-light = pkgs.curl-light.crossDrv; curlMinimal = (pkgs.curl.override {
zlibSupport = false;
sslSupport = false;
scpSupport = false;
}).crossDrv;
busyboxMinimal = (pkgs.busybox.override { busyboxMinimal = (pkgs.busybox.override {
# TBD: uClibc is broken. # TBD: uClibc is broken.
@ -166,8 +170,8 @@ rec {
cp -d ${gnumake}/bin/* $out/bin cp -d ${gnumake}/bin/* $out/bin
cp -d ${patch}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin
cp ${patchelf}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin
cp ${curl-light}/bin/curl $out/bin cp ${curlMinimal}/bin/curl $out/bin
cp -d ${curl-light}/lib/libcurl* $out/lib cp -d ${curlMinimal}/lib/libcurl* $out/lib
cp -d ${gnugrep.pcre.crossDrv}/lib/libpcre*.so* $out/lib # needed by grep cp -d ${gnugrep.pcre.crossDrv}/lib/libpcre*.so* $out/lib # needed by grep

View File

@ -10,6 +10,12 @@ rec {
aclSupport = false; aclSupport = false;
}); });
curlMinimal = curl.override {
zlibSupport = false;
sslSupport = false;
scpSupport = false;
};
busyboxMinimal = busybox.override { busyboxMinimal = busybox.override {
useMusl = true; useMusl = true;
enableStatic = true; enableStatic = true;
@ -77,8 +83,8 @@ rec {
cp -d ${gnumake}/bin/* $out/bin cp -d ${gnumake}/bin/* $out/bin
cp -d ${patch}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin
cp ${patchelf}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin
cp ${curl-light}/bin/curl $out/bin cp ${curlMinimal}/bin/curl $out/bin
cp -d ${curl-light}/lib/libcurl* $out/lib cp -d ${curlMinimal}/lib/libcurl* $out/lib
cp -d ${gnugrep.pcre}/lib/libpcre*.so* $out/lib # needed by grep cp -d ${gnugrep.pcre}/lib/libpcre*.so* $out/lib # needed by grep

View File

@ -1,133 +1,81 @@
{ stdenv, fetchurl, pkgconfig { stdenv, fetchurl
, idnSupport ? false, libidn ? null
# Optional Dependencies , ldapSupport ? false, openldap ? null
, zlib ? null, openssl ? null, libssh2 ? null, libnghttp2 ? null, c-ares ? null , zlibSupport ? false, zlib ? null
, gss ? null, rtmpdump ? null, openldap ? null, libidn ? null , sslSupport ? false, openssl ? null
, scpSupport ? false, libssh2 ? null
# Extra arguments , gssSupport ? false, gss ? null
, suffix ? "" , c-aresSupport ? false, c-ares ? null
}: }:
let assert idnSupport -> libidn != null;
mkFlag = trueStr: falseStr: cond: name: val: assert ldapSupport -> openldap != null;
if cond == null then null else assert zlibSupport -> zlib != null;
"--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}"; assert sslSupport -> openssl != null;
mkEnable = mkFlag "enable-" "disable-"; assert scpSupport -> libssh2 != null;
mkWith = mkFlag "with-" "without-"; assert c-aresSupport -> c-ares != null;
mkOther = mkFlag "" "" true;
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
isLight = suffix == "light";
isFull = suffix == "full";
nameSuffix = stdenv.lib.optionalString (suffix != "") "-${suffix}";
# Normal Depedencies
optZlib = if isLight then null else shouldUsePkg zlib;
optOpenssl = if isLight then null else shouldUsePkg openssl;
optLibssh2 = if isLight then null else shouldUsePkg libssh2;
optLibnghttp2 = if isLight then null else shouldUsePkg libnghttp2;
optC-ares = if isLight then null else shouldUsePkg c-ares;
# Full dependencies
optGss = if !isFull then null else shouldUsePkg gss;
optRtmpdump = if !isFull then null else shouldUsePkg rtmpdump;
optOpenldap = if !isFull then null else shouldUsePkg openldap;
optLibidn = if !isFull then null else shouldUsePkg libidn;
in
with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "curl${nameSuffix}-${version}"; name = "curl-7.42.1";
version = "7.42.1";
src = fetchurl { src = fetchurl {
url = "http://curl.haxx.se/download/curl-${version}.tar.bz2"; url = "http://curl.haxx.se/download/${name}.tar.bz2";
sha256 = "11y8racpj6m4j9w7wa9sifmqvdgf22nk901sfkbxzhhy75rmk472"; sha256 = "11y8racpj6m4j9w7wa9sifmqvdgf22nk901sfkbxzhhy75rmk472";
}; };
# Use pkgconfig only when necessary # Zlib and OpenSSL must be propagated because `libcurl.la' contains
nativeBuildInputs = optional (!isLight) pkgconfig; # "-lz -lssl", which aren't necessary direct build inputs of
buildInputs = [ # applications that use Curl.
optZlib optOpenssl optLibssh2 optLibnghttp2 optC-ares propagatedBuildInputs = with stdenv.lib;
optGss optRtmpdump optOpenldap optLibidn optional idnSupport libidn ++
]; optional ldapSupport openldap ++
optional zlibSupport zlib ++
optional gssSupport gss ++
optional c-aresSupport c-ares ++
optional sslSupport openssl ++
optional scpSupport libssh2;
# Make curl honor CURL_CA_BUNDLE & SSL_CERT_FILE # for the second line see http://curl.haxx.se/mail/tracker-2014-03/0087.html
preConfigure = ''
sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
rm src/tool_hugehelp.c
'';
# make curl honor CURL_CA_BUNDLE & SSL_CERT_FILE
postConfigure = '' postConfigure = ''
echo '#define CURL_CA_BUNDLE (getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE"))' >> lib/curl_config.h echo '#define CURL_CA_BUNDLE (getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE"))' >> lib/curl_config.h
''; '';
configureFlags = [ configureFlags = [
(mkEnable true "http" null) ( if sslSupport then "--with-ssl=${openssl}" else "--without-ssl" )
(mkEnable true "ftp" null) ( if scpSupport then "--with-libssh2=${libssh2}" else "--without-libssh2" )
(mkEnable true "file" null) ( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
(mkEnable (optOpenldap != null) "ldap" null) ( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
(mkEnable (optOpenldap != null) "ldaps" null) ( if idnSupport then "--with-libidn=${libidn}" else "--without-libidn" )
(mkEnable true "rtsp" null) ]
(mkEnable true "proxy" null) ++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
(mkEnable true "dict" null) ++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";
(mkEnable true "telnet" null)
(mkEnable true "tftp" null)
(mkEnable true "pop3" null)
(mkEnable true "imap" null)
(mkEnable true "smb" null)
(mkEnable true "smtp" null)
(mkEnable true "gopher" null)
(mkEnable (!isLight) "manual" null)
(mkEnable true "libcurl_option" null)
(mkEnable false "libgcc" null) # TODO: Enable on gcc
(mkWith (optZlib != null) "zlib" null)
(mkEnable true "ipv4" null)
(mkWith (optGss != null) "gssapi" null)
(mkWith false "winssl" null)
(mkWith false "darwinssl" null)
(mkWith (optOpenssl != null) "ssl" null)
(mkWith false "gnutls" null)
(mkWith false "polarssl" null)
(mkWith false "cyassl" null)
(mkWith false "nss" null)
(mkWith false "axtls" null)
(mkWith false "libmetalink" null)
(mkWith (optLibssh2 != null) "libssh2" null)
(mkWith (optRtmpdump!= null) "librtmp" null)
(mkEnable false "versioned-symbols" null)
(mkWith false "winidn" null)
(mkWith (optLibidn != null) "libidn" null)
(mkWith (optLibnghttp2 != null) "nghttp2" null)
(mkEnable false "sspi" null)
(mkEnable true "crypto-auth" null)
(mkEnable (optOpenssl != null) "tls-srp" null)
(mkEnable true "unix-sockets" null)
(mkEnable true "cookies" null)
(mkEnable (optC-ares != null) "ares" null)
];
# Fix all broken refernces to dependencies in .la and .pc files CXX = "g++";
postInstall = optionalString (optZlib != null) '' CXXCPP = "g++ -E";
sed -i 's,\(-lz\),-L${optZlib}/lib \1,' $out/lib/{libcurl.la,pkgconfig/libcurl.pc}
'' + optionalString (optOpenssl != null) ''
sed -i 's,\(-lssl\|-lcrypto\),-L${optOpenssl}/lib \1,' $out/lib/pkgconfig/libcurl.pc
'' + optionalString (optLibssh2 != null) ''
sed -i 's,\(-lssh2\),-L${optLibssh2}/lib \1,' $out/lib/pkgconfig/libcurl.pc
'' + optionalString (optLibnghttp2 != null) ''
sed -i 's,\(-lnghttp2\),-L${optLibnghttp2}/lib \1,' $out/lib/pkgconfig/libcurl.pc
'' + optionalString (optC-ares != null) ''
sed -i 's,\(-lcares\),-L${optC-ares}/lib \1,' $out/lib/{libcurl.la,pkgconfig/libcurl.pc}
'' + optionalString (optGss != null) ''
sed -i 's,\(-lgss\),-L${optGss}/lib \1,' $out/lib/{libcurl.la,pkgconfig/libcurl.pc}
'' + optionalString (optRtmpdump != null) ''
sed -i 's,\(-lrtmp\),-L${optRtmpdump}/lib \1,' $out/lib/pkgconfig/libcurl.pc
'' + optionalString (optOpenldap != null) ''
sed -i 's,\(-lgss\),-L${optOpenldap}/lib \1,' $out/lib/{libcurl.la,pkgconfig/libcurl.pc}
'' + optionalString (optLibidn != null) ''
sed -i 's,\(-lidn\),-L${optLibidn}/lib \1,' $out/lib/pkgconfig/libcurl.pc
'';
meta = { crossAttrs = {
# We should refer to the cross built openssl
# For the 'urandom', maybe it should be a cross-system option
configureFlags = [
( if sslSupport then "--with-ssl=${openssl.crossDrv}" else "--without-ssl" )
"--with-random /dev/urandom"
];
};
passthru = {
inherit sslSupport openssl;
};
meta = with stdenv.lib; {
description = "A command line tool for transferring files with URL syntax"; description = "A command line tool for transferring files with URL syntax";
homepage = http://curl.haxx.se/; homepage = http://curl.haxx.se/;
license = licenses.mit; maintainers = with maintainers; [ lovek323 ];
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ lovek323 wkennington ];
}; };
} }

View File

@ -1145,12 +1145,18 @@ let
cudatoolkit = cudatoolkit5; cudatoolkit = cudatoolkit5;
curl-light = curl.override { suffix = "light"; }; curlFull = curl.override {
curl = curl-full.override { idnSupport = true;
fetchurl = fetchurlBoot; ldapSupport = true;
suffix = ""; gssSupport = true;
};
curl = callPackage ../tools/networking/curl rec {
fetchurl = fetchurlBoot;
zlibSupport = true;
sslSupport = zlibSupport;
scpSupport = zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin;
}; };
curl-full = callPackage ../tools/networking/curl { suffix = "full"; };
curl3 = callPackage ../tools/networking/curl/7.15.nix rec { curl3 = callPackage ../tools/networking/curl/7.15.nix rec {
zlibSupport = true; zlibSupport = true;