about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libgnurl
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libgnurl')
-rw-r--r--nixpkgs/pkgs/development/libraries/libgnurl/default.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libgnurl/default.nix b/nixpkgs/pkgs/development/libraries/libgnurl/default.nix
new file mode 100644
index 000000000000..a7d91d0c81ad
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libgnurl/default.nix
@@ -0,0 +1,46 @@
+{ lib, 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 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;
+  };
+}