summary refs log tree commit diff
path: root/pkgs/development/libraries/neon
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-02-21 12:03:18 +0100
committerPeter Simons <simons@cryp.to>2013-02-21 12:03:52 +0100
commit95935e65c1441676ee59ba8d9ed3bde9bc2f48fa (patch)
tree8ef143afdc3e89f207634de8a352b2526a0f5682 /pkgs/development/libraries/neon
parent4b41e4b61f05f96a49bed75399de1d558dedb6bd (diff)
downloadnixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar.gz
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar.bz2
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar.lz
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar.xz
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.tar.zst
nixpkgs-95935e65c1441676ee59ba8d9ed3bde9bc2f48fa.zip
neon: remove obsolete versions 0.26 and 0.28
Diffstat (limited to 'pkgs/development/libraries/neon')
-rw-r--r--pkgs/development/libraries/neon/0.26.nix33
-rw-r--r--pkgs/development/libraries/neon/0.28.nix37
-rw-r--r--pkgs/development/libraries/neon/default.nix (renamed from pkgs/development/libraries/neon/0.29.nix)0
3 files changed, 0 insertions, 70 deletions
diff --git a/pkgs/development/libraries/neon/0.26.nix b/pkgs/development/libraries/neon/0.26.nix
deleted file mode 100644
index 6b06e54e73d..00000000000
--- a/pkgs/development/libraries/neon/0.26.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{ stdenv, fetchurl, libxml2, pkgconfig
-, compressionSupport ? true, zlib ? null
-, sslSupport ? true, openssl ? null
-}:
-
-assert compressionSupport -> zlib != null;
-assert sslSupport -> openssl != null;
-
-stdenv.mkDerivation {
-  name = "neon-0.26.4";
-  
-  src = fetchurl {
-    url = http://www.webdav.org/neon/neon-0.26.4.tar.gz;
-    sha256 = "1pjrn5wb18gy419293hmwd02blmh36aaxsrgajm9nkkkjzqakncj";
-  };
-   
-  buildInputs = [libxml2]
-    ++ stdenv.lib.optional compressionSupport zlib
-    ++ (if sslSupport then [ openssl pkgconfig ] else []);
-
-  configureFlags = ''
-    ${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/development/libraries/neon/0.28.nix b/pkgs/development/libraries/neon/0.28.nix
deleted file mode 100644
index 8e717ff52d8..00000000000
--- a/pkgs/development/libraries/neon/0.28.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ 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;
-
-stdenv.mkDerivation rec {
-  name = "neon-0.28.6";
-
-  src = fetchurl {
-    url = "http://www.webdav.org/neon/${name}.tar.gz";
-    sha256 = "03ncisn1iziz79vw678wsrv8jf63m2szd2qml5baj53slcd8pvh6";
-  };
-
-  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/development/libraries/neon/0.29.nix b/pkgs/development/libraries/neon/default.nix
index ffc409d271e..ffc409d271e 100644
--- a/pkgs/development/libraries/neon/0.29.nix
+++ b/pkgs/development/libraries/neon/default.nix