2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, libtool, groff, perl, pkg-config, python2, zlib, gnutls,
|
2018-10-23 21:33:17 +01:00
|
|
|
libidn2, libunistring, nghttp2 }:
|
2014-04-28 06:20:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-26 19:29:05 +01:00
|
|
|
pname = "libgnurl";
|
2020-11-01 01:30:23 +00:00
|
|
|
version = "7.72.0";
|
2014-04-28 06:20:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-23 21:33:17 +01:00
|
|
|
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
2020-11-01 01:30:23 +00:00
|
|
|
sha256 = "1y4laraq37kw8hc8jlzgcw7y37bfd0n71q0sy3d3z6yg7zh2prxi";
|
2014-04-28 06:20:37 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ libtool groff perl pkg-config python2 ];
|
2019-08-26 19:29:05 +01:00
|
|
|
|
2018-10-23 21:33:17 +01:00
|
|
|
buildInputs = [ gnutls zlib libidn2 libunistring nghttp2 ];
|
2014-04-28 06:20:37 +01:00
|
|
|
|
2016-07-05 03:29:58 +01:00
|
|
|
configureFlags = [
|
2018-10-23 21:33:17 +01:00
|
|
|
"--disable-ntlm-wb"
|
|
|
|
"--without-ca-bundle"
|
|
|
|
"--with-ca-fallback"
|
2019-08-26 19:29:05 +01:00
|
|
|
# below options will cause errors if enabled
|
|
|
|
"--disable-ftp"
|
|
|
|
"--disable-tftp"
|
|
|
|
"--disable-file"
|
|
|
|
"--disable-ldap"
|
|
|
|
"--disable-dict"
|
|
|
|
"--disable-rtsp"
|
|
|
|
"--disable-telnet"
|
|
|
|
"--disable-pop3"
|
|
|
|
"--disable-imap"
|
|
|
|
"--disable-smb"
|
|
|
|
"--disable-smtp"
|
|
|
|
"--disable-gopher"
|
|
|
|
"--without-ssl" # disables only openssl, not ssl in general
|
|
|
|
"--without-libpsl"
|
|
|
|
"--without-librtmp"
|
2016-07-05 03:29:58 +01:00
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-04-28 06:20:37 +01:00
|
|
|
description = "A fork of libcurl used by GNUnet";
|
2019-12-08 16:50:31 +00:00
|
|
|
homepage = "https://gnunet.org/en/gnurl.html";
|
2020-02-16 22:12:44 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2016-08-02 15:50:15 +01:00
|
|
|
platforms = platforms.linux;
|
2018-10-23 21:33:17 +01:00
|
|
|
license = licenses.curl;
|
2014-04-28 06:20:37 +01:00
|
|
|
};
|
|
|
|
}
|