libgnurl: reduce size of closure. Remove unnecessary/old dependencies,

use python3, remove groff, remove nghttp2.
This commit is contained in:
nikita 2020-05-12 18:53:44 +02:00 committed by Tom Bereknyei
parent ebe2a8b77f
commit 3fad80580e

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, libtool, groff, perl, pkg-config, python2, zlib, gnutls,
libidn2, libunistring, nghttp2 }:
{ lib, stdenv, fetchurl, libtool, perl, pkg-config, python3, zlib, gnutls
, libidn2, libunistring }:
stdenv.mkDerivation rec {
pname = "libgnurl";
@ -10,9 +10,9 @@ stdenv.mkDerivation rec {
sha256 = "1y4laraq37kw8hc8jlzgcw7y37bfd0n71q0sy3d3z6yg7zh2prxi";
};
nativeBuildInputs = [ libtool groff perl pkg-config python2 ];
nativeBuildInputs = [ libtool perl pkg-config python3 ];
buildInputs = [ gnutls zlib libidn2 libunistring nghttp2 ];
buildInputs = [ gnutls zlib libidn2 libunistring ];
configureFlags = [
"--disable-ntlm-wb"