2015-06-02 10:32:28 +01:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, idnSupport ? false, libidn ? null
|
|
|
|
, ldapSupport ? false, openldap ? null
|
|
|
|
, zlibSupport ? false, zlib ? null
|
|
|
|
, sslSupport ? false, openssl ? null
|
|
|
|
, scpSupport ? false, libssh2 ? null
|
|
|
|
, gssSupport ? false, gss ? null
|
|
|
|
, c-aresSupport ? false, c-ares ? null
|
2010-07-18 22:01:17 +01:00
|
|
|
}:
|
2005-06-17 11:30:13 +01:00
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
assert idnSupport -> libidn != null;
|
|
|
|
assert ldapSupport -> openldap != null;
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
assert scpSupport -> libssh2 != null;
|
|
|
|
assert c-aresSupport -> c-ares != null;
|
2015-06-01 19:52:03 +01:00
|
|
|
|
2009-03-11 15:16:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-10-17 19:54:13 +01:00
|
|
|
name = "curl-7.45.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 {
|
2015-06-02 10:32:28 +01:00
|
|
|
url = "http://curl.haxx.se/download/${name}.tar.bz2";
|
2015-10-17 19:54:13 +01:00
|
|
|
sha256 = "1slq5c0v9wa8hajgimhkxhvsrd07jmih8sa3gjsl597qp5k4w5b5";
|
* 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
|
|
|
|
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;
|
|
|
|
optional idnSupport libidn ++
|
|
|
|
optional ldapSupport openldap ++
|
|
|
|
optional zlibSupport zlib ++
|
|
|
|
optional gssSupport gss ++
|
|
|
|
optional c-aresSupport c-ares ++
|
|
|
|
optional sslSupport openssl ++
|
|
|
|
optional scpSupport libssh2;
|
|
|
|
|
|
|
|
# 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
|
|
|
|
'';
|
2013-09-07 01:38:36 +01:00
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
# make curl honor CURL_CA_BUNDLE & SSL_CERT_FILE
|
2014-11-19 13:45:02 +00:00
|
|
|
postConfigure = ''
|
2015-06-02 10:32:28 +01:00
|
|
|
echo '#define CURL_CA_BUNDLE (getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE"))' >> lib/curl_config.h
|
2014-11-19 13:45:02 +00:00
|
|
|
'';
|
|
|
|
|
2012-10-27 18:28:08 +01:00
|
|
|
configureFlags = [
|
2015-06-02 10:32:28 +01:00
|
|
|
( 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" )
|
|
|
|
( if ldapSupport then "--enable-ldaps" else "--disable-ldaps" )
|
|
|
|
( if idnSupport then "--with-libidn=${libidn}" else "--without-libidn" )
|
|
|
|
]
|
|
|
|
++ stdenv.lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
|
|
|
++ stdenv.lib.optional gssSupport "--with-gssapi=${gss}";
|
2010-03-06 15:17:43 +00:00
|
|
|
|
2015-06-02 10:32:28 +01:00
|
|
|
CXX = "g++";
|
|
|
|
CXXCPP = "g++ -E";
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
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";
|
2013-09-07 01:38:36 +01:00
|
|
|
homepage = http://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
|
|
|
}
|