9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ stdenv, fetchurl, libtool, groff, perl, pkg-config, python2, zlib, gnutls,
|
|
libidn2, libunistring, nghttp2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgnurl";
|
|
version = "7.72.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gnunet/gnurl-${version}.tar.gz";
|
|
sha256 = "1y4laraq37kw8hc8jlzgcw7y37bfd0n71q0sy3d3z6yg7zh2prxi";
|
|
};
|
|
|
|
nativeBuildInputs = [ libtool groff perl pkg-config 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; {
|
|
description = "A fork of libcurl used by GNUnet";
|
|
homepage = "https://gnunet.org/en/gnurl.html";
|
|
maintainers = with maintainers; [ vrthra ];
|
|
platforms = platforms.linux;
|
|
license = licenses.curl;
|
|
};
|
|
}
|