2018-03-15 23:08:12 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig, perl
|
2016-04-18 19:42:50 +01:00
|
|
|
, http2Support ? true, nghttp2
|
2015-06-02 10:32:28 +01:00
|
|
|
, idnSupport ? false, libidn ? null
|
|
|
|
, ldapSupport ? false, openldap ? null
|
|
|
|
, zlibSupport ? false, zlib ? null
|
|
|
|
, sslSupport ? false, openssl ? null
|
2017-02-05 12:37:16 +00:00
|
|
|
, gnutlsSupport ? false, gnutls ? null
|
2015-06-02 10:32:28 +01:00
|
|
|
, scpSupport ? false, libssh2 ? null
|
2017-09-25 20:53:52 +01:00
|
|
|
, gssSupport ? false, kerberos ? null
|
2015-06-02 10:32:28 +01:00
|
|
|
, c-aresSupport ? false, c-ares ? null
|
2017-11-29 10:55:11 +00:00
|
|
|
, brotliSupport ? false, brotli ? null
|
2010-07-18 22:01:17 +01:00
|
|
|
}:
|
2005-06-17 11:30:13 +01:00
|
|
|
|
2016-04-18 19:42:50 +01:00
|
|
|
assert http2Support -> nghttp2 != null;
|
2015-06-02 10:32:28 +01:00
|
|
|
assert idnSupport -> libidn != null;
|
|
|
|
assert ldapSupport -> openldap != null;
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
2017-02-05 12:37:16 +00:00
|
|
|
assert !(gnutlsSupport && sslSupport);
|
|
|
|
assert gnutlsSupport -> gnutls != null;
|
2015-06-02 10:32:28 +01:00
|
|
|
assert scpSupport -> libssh2 != null;
|
|
|
|
assert c-aresSupport -> c-ares != null;
|
2017-11-29 10:55:11 +00:00
|
|
|
assert brotliSupport -> brotli != null;
|
2017-09-25 20:53:52 +01:00
|
|
|
assert gssSupport -> kerberos != null;
|
2015-06-01 19:52:03 +01:00
|
|
|
|
2009-03-11 15:16:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-05-16 12:27:35 +01:00
|
|
|
name = "curl-7.60.0";
|
2010-08-06 13:45:39 +01:00
|
|
|
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 16:53:04 +00:00
|
|
|
src = fetchurl {
|
2018-03-15 23:08:12 +00:00
|
|
|
urls = [
|
|
|
|
"https://github.com/curl/curl/releases/download/${lib.replaceStrings ["."] ["_"] name}/${name}.tar.bz2"
|
|
|
|
"https://curl.haxx.se/download/${name}.tar.bz2"
|
|
|
|
];
|
2018-05-16 12:27:35 +01:00
|
|
|
sha256 = "16qyhy9alq2wk6zgqhh5dchr45f6nxaqzy3rh8rbx6dx0hignzc9";
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 16:53:04 +00:00
|
|
|
};
|
2010-08-06 13:45:39 +01:00
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "devdoc" ];
|
2017-07-05 15:04:54 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-10-06 14:32:17 +01:00
|
|
|
|
2017-01-24 12:51:30 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-31 14:30:40 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
# Zlib and OpenSSL must be propagated because `libcurl.la' contains
|
|
|
|
# "-lz -lssl", which aren't necessary direct build inputs of
|
|
|
|
# applications that use Curl.
|
|
|
|
propagatedBuildInputs = with stdenv.lib;
|
2016-04-18 19:42:50 +01:00
|
|
|
optional http2Support nghttp2 ++
|
2015-06-02 10:32:28 +01:00
|
|
|
optional idnSupport libidn ++
|
|
|
|
optional ldapSupport openldap ++
|
|
|
|
optional zlibSupport zlib ++
|
2017-09-25 20:53:52 +01:00
|
|
|
optional gssSupport kerberos ++
|
2015-06-02 10:32:28 +01:00
|
|
|
optional c-aresSupport c-ares ++
|
|
|
|
optional sslSupport openssl ++
|
2017-02-05 12:37:16 +00:00
|
|
|
optional gnutlsSupport gnutls ++
|
2017-11-29 10:55:11 +00:00
|
|
|
optional scpSupport libssh2 ++
|
|
|
|
optional brotliSupport brotli;
|
2015-06-02 10:32:28 +01:00
|
|
|
|
2017-08-02 22:50:51 +01:00
|
|
|
# for the second line see https://curl.haxx.se/mail/tracker-2014-03/0087.html
|
2015-06-02 10:32:28 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
|
|
|
|
rm src/tool_hugehelp.c
|
|
|
|
'';
|
2013-09-07 01:38:36 +01:00
|
|
|
|
2012-10-27 18:28:08 +01:00
|
|
|
configureFlags = [
|
2018-06-23 11:13:23 +01:00
|
|
|
# Disable default CA bundle, use NIX_SSL_CERT_FILE or fallback
|
|
|
|
# to nss-cacert from the default profile.
|
|
|
|
"--without-ca-bundle"
|
|
|
|
"--without-ca-path"
|
2017-03-22 10:48:06 +00:00
|
|
|
"--with-ca-fallback"
|
2014-08-23 03:26:04 +01:00
|
|
|
"--disable-manual"
|
2016-04-16 18:44:32 +01:00
|
|
|
( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
|
2017-02-05 12:37:16 +00:00
|
|
|
( if gnutlsSupport then "--with-gnutls=${gnutls.dev}" else "--without-gnutls" )
|
2016-04-16 18:39:09 +01:00
|
|
|
( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
|
2015-06-02 10:32:28 +01:00
|
|
|
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
|
|
|
|
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
|
2016-04-16 18:36:27 +01:00
|
|
|
( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
|
2017-11-29 10:55:11 +00:00
|
|
|
( if brotliSupport then "--with-brotli" else "--without-brotli" )
|
2015-06-02 10:32:28 +01:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
2017-12-17 13:51:32 +00:00
|
|
|
++ stdenv.lib.optional gssSupport "--with-gssapi=${kerberos.dev}";
|
2010-03-06 15:17:43 +00:00
|
|
|
|
2017-10-28 04:17:55 +01:00
|
|
|
CXX = "${stdenv.cc.targetPrefix}c++";
|
|
|
|
CXXCPP = "${stdenv.cc.targetPrefix}c++ -E";
|
2015-06-02 10:32:28 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # expensive, fails
|
|
|
|
|
2015-10-06 14:32:17 +01:00
|
|
|
postInstall = ''
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput bin/curl-config "$dev"
|
2015-10-06 14:32:17 +01:00
|
|
|
sed '/^dependency_libs/s|${libssh2.dev}|${libssh2.out}|' -i "$out"/lib/*.la
|
2017-02-05 12:37:16 +00:00
|
|
|
'' + stdenv.lib.optionalString gnutlsSupport ''
|
|
|
|
ln $out/lib/libcurl.so $out/lib/libcurl-gnutls.so
|
|
|
|
ln $out/lib/libcurl.so $out/lib/libcurl-gnutls.so.4
|
|
|
|
ln $out/lib/libcurl.so $out/lib/libcurl-gnutls.so.4.4.0
|
2015-10-06 14:32:17 +01:00
|
|
|
'';
|
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
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" )
|
2017-02-05 12:37:16 +00:00
|
|
|
( if gnutlsSupport then "--with-gnutls=${gnutls.crossDrv}" else "--without-gnutls" )
|
2018-07-01 18:47:24 +01:00
|
|
|
"--with-random=/dev/urandom"
|
2015-06-02 10:32:28 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit sslSupport openssl;
|
|
|
|
};
|
2015-06-02 10:32:16 +01:00
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-04-23 10:30:09 +01:00
|
|
|
description = "A command line tool for transferring files with URL syntax";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://curl.haxx.se/;
|
2015-06-02 10:32:28 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2013-09-07 01:38:36 +01:00
|
|
|
platforms = platforms.all;
|
2008-04-23 10:30:09 +01:00
|
|
|
};
|
2007-05-24 14:34:34 +01:00
|
|
|
}
|