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 {
|
2018-10-23 21:33:17 +01:00
|
|
|
version = "7.61.1";
|
2014-04-28 06:20:37 +01:00
|
|
|
|
|
|
|
name = "libgnurl-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-23 21:33:17 +01:00
|
|
|
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
|
|
|
sha256 = "0y56k15vp3m2r8q6mnc6ivflwq9lv6npdhbbvxxcf4r8vwjhv91q";
|
2014-04-28 06:20:37 +01:00
|
|
|
};
|
|
|
|
|
2018-10-23 21:33:17 +01:00
|
|
|
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
|
|
|
|
|
|
|
|
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"
|
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
|
|
|
};
|
|
|
|
}
|