forked from mirrors/nixpkgs
gnurl: 7.64.0 -> 7.65.0
This commit is contained in:
parent
bfcab98074
commit
47c398f632
|
@ -2,23 +2,38 @@
|
|||
libidn2, libunistring, nghttp2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "7.64.0";
|
||||
|
||||
name = "libgnurl-${version}";
|
||||
pname = "libgnurl";
|
||||
version = "7.65.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
||||
sha256 = "0pvmbi32lixcpk10prplmwrmi4wzp3bc1aiyhr552kx0wqdqmdk8";
|
||||
sha256 = "19l7jw3x83qk7yay5968pc39vzvxl55mhn1nmjh51miyda405qa9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
|
||||
|
||||
|
||||
buildInputs = [ gnutls zlib libidn2 libunistring nghttp2 ];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-ntlm-wb"
|
||||
"--without-ca-bundle"
|
||||
"--with-ca-fallback"
|
||||
# below options will cause errors if enabled
|
||||
"--disable-ftp"
|
||||
"--disable-tftp"
|
||||
"--disable-file"
|
||||
"--disable-ldap"
|
||||
"--disable-dict"
|
||||
"--disable-rtsp"
|
||||
"--disable-telnet"
|
||||
"--disable-pop3"
|
||||
"--disable-imap"
|
||||
"--disable-smb"
|
||||
"--disable-smtp"
|
||||
"--disable-gopher"
|
||||
"--without-ssl" # disables only openssl, not ssl in general
|
||||
"--without-libpsl"
|
||||
"--without-librtmp"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue