gnurl: 7.64.0 -> 7.65.0
This commit is contained in:
parent
bfcab98074
commit
47c398f632
1 changed files with 20 additions and 5 deletions
|
@ -2,13 +2,12 @@
|
||||||
libidn2, libunistring, nghttp2 }:
|
libidn2, libunistring, nghttp2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "7.64.0";
|
pname = "libgnurl";
|
||||||
|
version = "7.65.3";
|
||||||
name = "libgnurl-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
||||||
sha256 = "0pvmbi32lixcpk10prplmwrmi4wzp3bc1aiyhr552kx0wqdqmdk8";
|
sha256 = "19l7jw3x83qk7yay5968pc39vzvxl55mhn1nmjh51miyda405qa9";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
|
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
|
||||||
|
@ -19,6 +18,22 @@ stdenv.mkDerivation rec {
|
||||||
"--disable-ntlm-wb"
|
"--disable-ntlm-wb"
|
||||||
"--without-ca-bundle"
|
"--without-ca-bundle"
|
||||||
"--with-ca-fallback"
|
"--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; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue