* davfs2 updated to 1.4.5.

* neon updated to 0.28.6.

svn path=/nixpkgs/trunk/; revision=18841
This commit is contained in:
Eelco Dolstra
2009-12-08 13:08:27 +00:00
parent 83ee756b0a
commit 87fcfb0df2
5 changed files with 30 additions and 29 deletions

View File

@@ -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;