2006-10-12 17:43:01 +02:00
|
|
|
{stdenv, fetchurl, libxml2}:
|
|
|
|
|
|
|
|
assert libxml2 != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-10-18 23:08:47 +02:00
|
|
|
name = "libxslt-1.1.22";
|
2006-10-12 17:43:01 +02:00
|
|
|
src = fetchurl {
|
2007-10-18 23:08:47 +02:00
|
|
|
url = ftp://xmlsoft.org/libxml2/libxslt-1.1.22.tar.gz;
|
|
|
|
sha256 = "1nj9pvn4ibhwxpl3ry9n6d7jahppcnqc7mi87nld4vsr2vp3j7sf";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
|
|
|
buildInputs = [libxml2];
|
2007-10-18 23:08:47 +02:00
|
|
|
postInstall = "ensureDir $out/nix-support; ln -s ${libxml2}/nix-support/setup-hook $out/nix-support/";
|
2006-10-12 17:43:01 +02:00
|
|
|
}
|