1.1.17, untested

svn path=/nixpkgs/trunk/; revision=5935
This commit is contained in:
Armijn Hemel 2006-07-25 09:58:11 +00:00
parent d41d5a6970
commit 80e72c6c7e

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, libxml2}:
assert libxml2 != null;
stdenv.mkDerivation {
name = "libxslt-1.1.17";
src = fetchurl {
url = ftp://xmlsoft.org/libxslt/libxslt-1.1.17.tar.gz;
md5 = "fde6a7a93c0eb14cba628692fa3a1000";
};
buildInputs = [libxml2];
}