about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/neon/0.29.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/neon/0.29.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/neon/0.29.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/neon/0.29.nix b/nixpkgs/pkgs/development/libraries/neon/0.29.nix
new file mode 100644
index 000000000000..e0437fb7cea1
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/neon/0.29.nix
@@ -0,0 +1,49 @@
+{ lib, stdenv, fetchurl, libxml2, pkg-config, perl
+, compressionSupport ? true, zlib ? null
+, sslSupport ? true, openssl ? null
+, static ? false
+, shared ? true
+}:
+
+assert compressionSupport -> zlib != null;
+assert sslSupport -> openssl != null;
+assert static || shared;
+
+let
+   inherit (lib) optionals;
+in
+
+stdenv.mkDerivation rec {
+  version = "0.29.6";
+  pname = "neon";
+
+  src = fetchurl {
+    url = "http://www.webdav.org/neon/${pname}-${version}.tar.gz";
+    sha256 = "0hzbjqdx1z8zw0vmbknf159wjsxbcq8ii0wgwkqhxj3dimr0nr4w";
+  };
+
+  patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ];
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [libxml2 openssl]
+    ++ lib.optional compressionSupport zlib;
+
+  configureFlags = [
+    (lib.enableFeature shared "shared")
+    (lib.enableFeature static "static")
+    (lib.withFeature compressionSupport "zlib")
+    (lib.withFeature sslSupport "ssl")
+  ];
+
+  passthru = {inherit compressionSupport sslSupport;};
+
+  checkInputs = [ perl ];
+  doCheck = false; # fails, needs the net
+
+  meta = with lib; {
+    description = "An HTTP and WebDAV client library";
+    homepage = "http://www.webdav.org/neon/";
+    platforms = platforms.unix;
+    license = licenses.lgpl2;
+  };
+}