nixpkgs/pkgs/development/libraries/libxslt/default.nix
Pjotr Prins 0e6536e5c6 sha256 for libxslt changed?!
svn path=/nixpkgs/trunk/; revision=12948
2008-10-05 08:47:34 +00:00

14 lines
402 B
Nix

{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/";
}