2018-10-23 21:33:17 +01:00
|
|
|
{ stdenv, fetchurl, libtool, groff, perl, pkgconfig, python2, zlib, gnutls,
|
|
|
|
libidn2, libunistring, nghttp2 }:
|
2014-04-28 06:20:37 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-26 19:29:05 +01:00
|
|
|
pname = "libgnurl";
|
2019-09-26 20:02:17 +01:00
|
|
|
version = "7.66.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";
|
2019-09-26 20:02:17 +01:00
|
|
|
sha256 = "03bkzcld384z7i3zh3k9k3pr0xpyqbcr8cxjqya1zqs5lk7i55x5";
|
2014-04-28 06:20:37 +01:00
|
|
|
};
|
|
|
|
|
2018-10-23 21:33:17 +01:00
|
|
|
nativeBuildInputs = [ libtool groff perl pkgconfig 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
|
|
|
];
|
|
|
|
|
2014-04-28 06:20:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A fork of libcurl used by GNUnet";
|
|
|
|
homepage = https://gnunet.org/gnurl;
|
2016-07-05 01:51:28 +01:00
|
|
|
maintainers = with maintainers; [ falsifian 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
|
|
|
};
|
|
|
|
}
|