nixpkgs/pkgs/development/libraries/libgnurl/default.nix
R. RyanTM e53b5aaf2c libgnurl: 7.63.0 -> 7.64.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/libgnurl/versions
2019-03-10 05:58:15 -07:00

32 lines
833 B
Nix

{ stdenv, fetchurl, libtool, groff, perl, pkgconfig, python2, zlib, gnutls,
libidn2, libunistring, nghttp2 }:
stdenv.mkDerivation rec {
version = "7.64.0";
name = "libgnurl-${version}";
src = fetchurl {
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
sha256 = "0pvmbi32lixcpk10prplmwrmi4wzp3bc1aiyhr552kx0wqdqmdk8";
};
nativeBuildInputs = [ libtool groff perl pkgconfig python2 ];
buildInputs = [ gnutls zlib libidn2 libunistring nghttp2 ];
configureFlags = [
"--disable-ntlm-wb"
"--without-ca-bundle"
"--with-ca-fallback"
];
meta = with stdenv.lib; {
description = "A fork of libcurl used by GNUnet";
homepage = https://gnunet.org/gnurl;
maintainers = with maintainers; [ falsifian vrthra ];
platforms = platforms.linux;
license = licenses.curl;
};
}