summary refs log tree commit diff
path: root/pkgs/development/libraries/neon
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-08 13:08:27 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-12-08 13:08:27 +0000
commit87fcfb0df2b1971553434393f63cc4425d2f28bd (patch)
tree46419665569dd7f393972262c0ff91747bdb8462 /pkgs/development/libraries/neon
parent83ee756b0acfb8ae74d6bbf528811382535aa99e (diff)
downloadnixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar.gz
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar.bz2
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar.lz
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar.xz
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.tar.zst
nixpkgs-87fcfb0df2b1971553434393f63cc4425d2f28bd.zip
* davfs2 updated to 1.4.5.
* neon updated to 0.28.6.

svn path=/nixpkgs/trunk/; revision=18841
Diffstat (limited to 'pkgs/development/libraries/neon')
-rw-r--r--pkgs/development/libraries/neon/0.28.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/neon/0.28.nix b/pkgs/development/libraries/neon/0.28.nix
index 8373ed25d24..c41474b39b6 100644
--- a/pkgs/development/libraries/neon/0.28.nix
+++ b/pkgs/development/libraries/neon/0.28.nix
@@ -9,12 +9,12 @@ assert compressionSupport -> zlib != null;
 assert sslSupport -> openssl != null;
 assert static || shared;
 
-stdenv.mkDerivation {
-  name = "neon-0.28.3";
+stdenv.mkDerivation rec {
+  name = "neon-0.28.6";
 
   src = fetchurl {
-    url = http://www.webdav.org/neon/neon-0.28.3.tar.gz;
-    sha256 = "1hnd9wlbnfpppx6rvalhdkc1rf29afacl1m15z751g3h9hdybplh";
+    url = "http://www.webdav.org/neon/${name}.tar.gz";
+    sha256 = "03ncisn1iziz79vw678wsrv8jf63m2szd2qml5baj53slcd8pvh6";
   };
 
   buildInputs = [libxml2] ++ stdenv.lib.optional compressionSupport zlib;