about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-10-03 12:56:11 +0200
committerMatthias Beyer <mail@beyermatthias.de>2015-10-03 13:01:31 +0200
commit3e5dbb7b782004702b9b3d091a692fd1ef2eb857 (patch)
tree8d4ad5b284820ed6725d13d30063d44f54a172e9
parente0ebb928e1e27e1adefb893be9b4e31348539ae4 (diff)
downloadnixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar.gz
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar.bz2
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar.lz
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar.xz
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.tar.zst
nixlib-3e5dbb7b782004702b9b3d091a692fd1ef2eb857.zip
neon: Re-add version 0.29.6
-rw-r--r--pkgs/development/libraries/neon/0.29.nix44
-rw-r--r--pkgs/top-level/all-packages.nix5
2 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/development/libraries/neon/0.29.nix b/pkgs/development/libraries/neon/0.29.nix
new file mode 100644
index 000000000000..1be9f453bb41
--- /dev/null
+++ b/pkgs/development/libraries/neon/0.29.nix
@@ -0,0 +1,44 @@
+{ stdenv, fetchurl, libxml2, pkgconfig
+, 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 (stdenv.lib) optionals;
+in
+
+stdenv.mkDerivation rec {
+  version = "0.29.6";
+  name = "neon-${version}";
+
+  src = fetchurl {
+    url = "http://www.webdav.org/neon/${name}.tar.gz";
+    sha256 = "0hzbjqdx1z8zw0vmbknf159wjsxbcq8ii0wgwkqhxj3dimr0nr4w";
+  };
+
+  patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ];
+
+  buildInputs = [libxml2 pkgconfig openssl]
+    ++ stdenv.lib.optional compressionSupport zlib;
+
+  configureFlags = ''
+    ${if shared then "--enable-shared" else "--disable-shared"}
+    ${if static then "--enable-static" else "--disable-static"}
+    ${if compressionSupport then "--with-zlib" else "--without-zlib"}
+    ${if sslSupport then "--with-ssl" else "--without-ssl"}
+    --enable-shared
+  '';
+
+  passthru = {inherit compressionSupport sslSupport;};
+
+  meta = {
+    description = "An HTTP and WebDAV client library";
+    homepage = http://www.webdav.org/neon/;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 9d77849bbb77..05c6737139a6 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7658,6 +7658,11 @@ let
     sslSupport = true;
   };
 
+  neon_0_29 = callPackage ../development/libraries/neon/0.29.nix {
+    compressionSupport = true;
+    sslSupport = true;
+  };
+
   nethack = callPackage ../games/nethack { };
 
   nettle = callPackage ../development/libraries/nettle { };