2016-02-17 10:04:32 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl
|
2016-04-18 20:42:50 +02:00
|
|
|
, http2Support ? true, nghttp2
|
2015-06-02 11:32:28 +02:00
|
|
|
, idnSupport ? false, libidn ? null
|
|
|
|
, ldapSupport ? false, openldap ? null
|
|
|
|
, zlibSupport ? false, zlib ? null
|
|
|
|
, sslSupport ? false, openssl ? null
|
2017-02-05 13:37:16 +01:00
|
|
|
, gnutlsSupport ? false, gnutls ? null
|
2015-06-02 11:32:28 +02:00
|
|
|
, scpSupport ? false, libssh2 ? null
|
2017-09-25 21:53:52 +02:00
|
|
|
, gssSupport ? false, kerberos ? null
|
2015-06-02 11:32:28 +02:00
|
|
|
, c-aresSupport ? false, c-ares ? null
|
2017-11-29 11:55:11 +01:00
|
|
|
, brotliSupport ? false, brotli ? null
|
2010-07-18 23:01:17 +02:00
|
|
|
}:
|
2005-06-17 12:30:13 +02:00
|
|
|
|
2016-04-18 20:42:50 +02:00
|
|
|
assert http2Support -> nghttp2 != null;
|
2015-06-02 11:32:28 +02:00
|
|
|
assert idnSupport -> libidn != null;
|
|
|
|
assert ldapSupport -> openldap != null;
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
2017-02-05 13:37:16 +01:00
|
|
|
assert !(gnutlsSupport && sslSupport);
|
|
|
|
assert gnutlsSupport -> gnutls != null;
|
2015-06-02 11:32:28 +02:00
|
|
|
assert scpSupport -> libssh2 != null;
|
|
|
|
assert c-aresSupport -> c-ares != null;
|
2017-11-29 11:55:11 +01:00
|
|
|
assert brotliSupport -> brotli != null;
|
2017-09-25 21:53:52 +02:00
|
|
|
assert gssSupport -> kerberos != null;
|
2015-06-01 20:52:03 +02:00
|
|
|
|
2009-03-11 16:16:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-01-29 14:14:07 +01:00
|
|
|
name = "curl-7.58.0";
|
2010-08-06 14:45:39 +02: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 17:53:04 +01:00
|
|
|
src = fetchurl {
|
2018-02-01 01:00:00 +01:00
|
|
|
url = "https://curl.haxx.se/download/${name}.tar.bz2";
|
2018-01-29 14:14:07 +01:00
|
|
|
sha256 = "0cg7klhf1ksnbw5wvwa802qir877zv4y3dj7swz1xh07g3wq3c0w";
|
* 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 17:53:04 +01:00
|
|
|
};
|
2010-08-06 14:45:39 +02:00
|
|
|
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "devdoc" ];
|
2017-07-05 16:04:54 +02:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-10-06 15:32:17 +02:00
|
|
|
|
2017-01-24 13:51:30 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-31 15:30:40 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ];
|
|
|
|
|
2015-06-02 11:32:28 +02: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 20:42:50 +02:00
|
|
|
optional http2Support nghttp2 ++
|
2015-06-02 11:32:28 +02:00
|
|
|
optional idnSupport libidn ++
|
|
|
|
optional ldapSupport openldap ++
|
|
|
|
optional zlibSupport zlib ++
|
2017-09-25 21:53:52 +02:00
|
|
|
optional gssSupport kerberos ++
|
2015-06-02 11:32:28 +02:00
|
|
|
optional c-aresSupport c-ares ++
|
|
|
|
optional sslSupport openssl ++
|
2017-02-05 13:37:16 +01:00
|
|
|
optional gnutlsSupport gnutls ++
|
2017-11-29 11:55:11 +01:00
|
|
|
optional scpSupport libssh2 ++
|
|
|
|
optional brotliSupport brotli;
|
2015-06-02 11:32:28 +02:00
|
|
|
|
2017-08-02 23:50:51 +02:00
|
|
|
# for the second line see https://curl.haxx.se/mail/tracker-2014-03/0087.html
|
2015-06-02 11:32:28 +02:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure
|
|
|
|
rm src/tool_hugehelp.c
|
|
|
|
'';
|
2013-09-07 02:38:36 +02:00
|
|
|
|
2012-10-27 19:28:08 +02:00
|
|
|
configureFlags = [
|
2017-03-22 11:48:06 +01:00
|
|
|
"--with-ca-fallback"
|
2014-08-23 04:26:04 +02:00
|
|
|
"--disable-manual"
|
2016-04-16 19:44:32 +02:00
|
|
|
( if sslSupport then "--with-ssl=${openssl.dev}" else "--without-ssl" )
|
2017-02-05 13:37:16 +01:00
|
|
|
( if gnutlsSupport then "--with-gnutls=${gnutls.dev}" else "--without-gnutls" )
|
2016-04-16 19:39:09 +02:00
|
|
|
( if scpSupport then "--with-libssh2=${libssh2.dev}" else "--without-libssh2" )
|
2015-06-02 11:32:28 +02:00
|
|
|
( if ldapSupport then "--enable-ldap" else "--disable-ldap" )
|
|
|
|
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
|
2016-04-16 19:36:27 +02:00
|
|
|
( if idnSupport then "--with-libidn=${libidn.dev}" else "--without-libidn" )
|
2017-11-29 11:55:11 +01:00
|
|
|
( if brotliSupport then "--with-brotli" else "--without-brotli" )
|
2015-06-02 11:32:28 +02:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
2017-12-17 14:51:32 +01:00
|
|
|
++ stdenv.lib.optional gssSupport "--with-gssapi=${kerberos.dev}";
|
2010-03-06 16:17:43 +01:00
|
|
|
|
2017-10-04 23:03:34 +02:00
|
|
|
CXX = "c++";
|
|
|
|
CXXCPP = "c++ -E";
|
2015-06-02 11:32:28 +02:00
|
|
|
|
2015-10-06 15:32:17 +02:00
|
|
|
postInstall = ''
|
2015-12-02 10:03:23 +01:00
|
|
|
moveToOutput bin/curl-config "$dev"
|
2015-10-06 15:32:17 +02:00
|
|
|
sed '/^dependency_libs/s|${libssh2.dev}|${libssh2.out}|' -i "$out"/lib/*.la
|
2017-02-05 13:37:16 +01: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 15:32:17 +02:00
|
|
|
'';
|
|
|
|
|
2015-06-02 11:32:28 +02: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 13:37:16 +01:00
|
|
|
( if gnutlsSupport then "--with-gnutls=${gnutls.crossDrv}" else "--without-gnutls" )
|
2015-06-02 11:32:28 +02:00
|
|
|
"--with-random /dev/urandom"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
inherit sslSupport openssl;
|
|
|
|
};
|
2015-06-02 11:32:16 +02:00
|
|
|
|
2015-06-02 11:32:28 +02:00
|
|
|
meta = with stdenv.lib; {
|
2008-04-23 11:30:09 +02:00
|
|
|
description = "A command line tool for transferring files with URL syntax";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://curl.haxx.se/;
|
2015-06-02 11:32:28 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2013-09-07 02:38:36 +02:00
|
|
|
platforms = platforms.all;
|
2008-04-23 11:30:09 +02:00
|
|
|
};
|
2007-05-24 15:34:34 +02:00
|
|
|
}
|