* libxml2 updated to 2.7.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13972
This commit is contained in:
Eelco Dolstra
2009-02-03 16:14:23 +00:00
parent 987c01630a
commit 205aa93e92
3 changed files with 33 additions and 28 deletions
+12 -3
View File
@@ -1,13 +1,22 @@
{stdenv, fetchurl, libxml2}:
assert libxml2 != null;
stdenv.mkDerivation {
name = "libxslt-1.1.24";
src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz;
sha256 = "c0c10944841e9a79f29d409c6f8da0d1b1af0403eb3819c82c788dfa6a180b3e";
};
buildInputs = [libxml2];
postInstall = "ensureDir $out/nix-support; ln -s ${libxml2}/nix-support/setup-hook $out/nix-support/";
postInstall = ''
ensureDir $out/nix-support
ln -s ${libxml2}/nix-support/setup-hook $out/nix-support/
'';
meta = {
homepage = http://xmlsoft.org/XSLT/;
description = "A C library and tools to do XSL transformations";
};
}