2018-10-23 22:33:17 +02:00
|
|
|
{ stdenv, fetchurl, libtool, groff, perl, pkgconfig, python2, zlib, gnutls,
|
|
|
|
libidn2, libunistring, nghttp2 }:
|
2014-04-28 07:20:37 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-10 13:58:15 +01:00
|
|
|
version = "7.64.0";
|
2014-04-28 07:20:37 +02:00
|
|
|
|
|
|
|
name = "libgnurl-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-23 22:33:17 +02:00
|
|
|
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
2019-03-10 13:58:15 +01:00
|
|
|
sha256 = "0pvmbi32lixcpk10prplmwrmi4wzp3bc1aiyhr552kx0wqdqmdk8";
|
2014-04-28 07:20:37 +02:00
|
|
|
};
|
|
|
|
|
2018-10-23 22:33:17 +02:00
|
|
|
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
|
|
|
|
|
|
|
|
buildInputs = [ gnutls zlib libidn2 libunistring nghttp2 ];
|
2014-04-28 07:20:37 +02:00
|
|
|
|
2016-07-05 04:29:58 +02:00
|
|
|
configureFlags = [
|
2018-10-23 22:33:17 +02:00
|
|
|
"--disable-ntlm-wb"
|
|
|
|
"--without-ca-bundle"
|
|
|
|
"--with-ca-fallback"
|
2016-07-05 04:29:58 +02:00
|
|
|
];
|
|
|
|
|
2014-04-28 07:20:37 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A fork of libcurl used by GNUnet";
|
|
|
|
homepage = https://gnunet.org/gnurl;
|
2016-07-05 02:51:28 +02:00
|
|
|
maintainers = with maintainers; [ falsifian vrthra ];
|
2016-08-02 16:50:15 +02:00
|
|
|
platforms = platforms.linux;
|
2018-10-23 22:33:17 +02:00
|
|
|
license = licenses.curl;
|
2014-04-28 07:20:37 +02:00
|
|
|
};
|
|
|
|
}
|