2006-10-12 17:43:01 +02:00
|
|
|
{stdenv, fetchurl, libxml2}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-06-12 11:49:40 +02:00
|
|
|
name = "libxslt-1.1.24";
|
2009-02-03 17:14:23 +01:00
|
|
|
|
2006-10-12 17:43:01 +02:00
|
|
|
src = fetchurl {
|
2008-06-12 11:49:40 +02:00
|
|
|
url = ftp://xmlsoft.org/libxml2/libxslt-1.1.24.tar.gz;
|
2008-10-05 10:47:34 +02:00
|
|
|
sha256 = "c0c10944841e9a79f29d409c6f8da0d1b1af0403eb3819c82c788dfa6a180b3e";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
2009-02-03 17:14:23 +01:00
|
|
|
|
2006-10-12 17:43:01 +02:00
|
|
|
buildInputs = [libxml2];
|
2009-02-03 17:14:23 +01:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
2006-10-12 17:43:01 +02:00
|
|
|
}
|