3
0
Fork 0
forked from mirrors/nixpkgs

add a standalone version of neon

svn path=/nixpkgs/trunk/; revision=4143
This commit is contained in:
Armijn Hemel 2005-10-26 16:17:16 +00:00
parent 8aec439cd0
commit 9eba383a3d

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, libxml2}:
stdenv.mkDerivation {
name = "neon-0.25.4";
src = fetchurl {
url = http://www.webdav.org/neon/neon-0.25.4.tar.gz;
md5 = "4448c3a91e80429ea733aec8ce300009";
};
buildInputs = [libxml2];
}