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
|
2018-11-18 07:59:40 +00:00
|
|
|
, zlibSupport ? true, zlib ? null
|
|
|
|
, sslSupport ? zlibSupport, openssl ? null
|
2017-02-05 12:37:16 +00:00
|
|
|
, gnutlsSupport ? false, gnutls ? null
|
2019-11-28 12:26:42 +00:00
|
|
|
, wolfsslSupport ? false, wolfssl ? null
|
2018-11-18 07:59:40 +00:00
|
|
|
, scpSupport ? zlibSupport && !stdenv.isSunOS && !stdenv.isCygwin, libssh2 ? null
|
2021-01-03 21:40:14 +00:00
|
|
|
, # a very sad story re static: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=439039
|
|
|
|
gssSupport ? with stdenv.hostPlatform; !isWindows && !isStatic, libkrb5 ? 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
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
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);
|
2019-11-28 12:26:42 +00:00
|
|
|
assert !(gnutlsSupport && wolfsslSupport);
|
|
|
|
assert !(sslSupport && wolfsslSupport);
|
2017-02-05 12:37:16 +00:00
|
|
|
assert gnutlsSupport -> gnutls != null;
|
2019-11-28 12:26:42 +00:00
|
|
|
assert wolfsslSupport -> wolfssl != 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;
|
2018-11-18 07:59:40 +00:00
|
|
|
assert gssSupport -> libkrb5 != null;
|
2015-06-01 19:52:03 +01:00
|
|
|
|
2009-03-11 15:16:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-04 17:47:47 +01:00
|
|
|
pname = "curl";
|
2020-12-09 14:25:33 +00:00
|
|
|
version = "7.74.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 = [
|
2020-05-04 17:47:47 +01:00
|
|
|
"https://curl.haxx.se/download/${pname}-${version}.tar.bz2"
|
|
|
|
"https://github.com/curl/curl/releases/download/${lib.replaceStrings ["."] ["_"] pname}-${version}/${pname}-${version}.tar.bz2"
|
2018-03-15 23:08:12 +00:00
|
|
|
];
|
2020-12-09 14:25:33 +00:00
|
|
|
sha256 = "19bp3d91xq9vqwlbzq261j23mk9lz4lyka4gr2fm6dhnd3k66k8g";
|
* 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.
|
2021-01-15 09:19:50 +00:00
|
|
|
propagatedBuildInputs = with 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 ++
|
2018-11-18 07:59:40 +00:00
|
|
|
optional gssSupport libkrb5 ++
|
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 ++
|
2019-11-28 12:26:42 +00:00
|
|
|
optional wolfsslSupport wolfssl ++
|
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"
|
2019-11-28 12:26:42 +00:00
|
|
|
# The build fails when using wolfssl with --with-ca-fallback
|
|
|
|
( if wolfsslSupport then "--without-ca-fallback" else "--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
|
|
|
]
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional wolfsslSupport "--with-wolfssl=${wolfssl.dev}"
|
|
|
|
++ lib.optional c-aresSupport "--enable-ares=${c-ares}"
|
|
|
|
++ lib.optional gssSupport "--with-gssapi=${libkrb5.dev}"
|
2018-07-23 20:51:18 +01:00
|
|
|
# For the 'urandom', maybe it should be a cross-system option
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
2018-10-17 20:44:35 +01:00
|
|
|
"--with-random=/dev/urandom"
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optionals stdenv.hostPlatform.isWindows [
|
2018-10-17 20:44:35 +01:00
|
|
|
"--disable-shared"
|
|
|
|
"--enable-static"
|
|
|
|
];
|
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"
|
2019-04-17 18:43:37 +01:00
|
|
|
|
|
|
|
# Install completions
|
|
|
|
make -C scripts install
|
2021-01-15 09:19:50 +00:00
|
|
|
'' + lib.optionalString scpSupport ''
|
2015-10-06 14:32:17 +01:00
|
|
|
sed '/^dependency_libs/s|${libssh2.dev}|${libssh2.out}|' -i "$out"/lib/*.la
|
2021-01-15 09:19:50 +00:00
|
|
|
'' + lib.optionalString gnutlsSupport ''
|
2017-02-05 12:37:16 +00:00
|
|
|
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
|
|
|
passthru = {
|
|
|
|
inherit sslSupport openssl;
|
|
|
|
};
|
2015-06-02 10:32:16 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2008-04-23 10:30:09 +01:00
|
|
|
description = "A command line tool for transferring files with URL syntax";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://curl.haxx.se/";
|
2018-08-16 20:36:36 +01:00
|
|
|
license = licenses.curl;
|
2020-05-04 17:47:47 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2018-08-16 20:36:36 +01:00
|
|
|
platforms = platforms.all;
|
2008-04-23 10:30:09 +01:00
|
|
|
};
|
2007-05-24 14:34:34 +01:00
|
|
|
}
|