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:
commit
59b3fb4048
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue