3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #87685 from ghost/local/gnurl770-fix1

libgnurl: reduce size of closure. Remove unnecessary/old dependencies,
This commit is contained in:
tomberek 2021-08-26 22:09:44 -04:00 committed by GitHub
commit 59b3fb4048
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"