nixpkgs/pkgs/development/libraries/libxslt/default.nix

33 lines
781 B
Nix
Raw Normal View History

2012-09-28 21:19:48 +00:00
{ stdenv, fetchurl, libxml2 }:
stdenv.mkDerivation rec {
2012-09-28 21:19:48 +00:00
name = "libxslt-1.1.27";
src = fetchurl {
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
2012-09-28 21:19:48 +00:00
sha256 = "09ky3vhlaahvsb0q9gp6h3as53pfj70gincirachjqzj46jdka5n";
};
2012-09-28 21:19:48 +00:00
configureFlags = [
"--with-libxml-prefix=${libxml2}"
"--without-python"
"--without-crypto"
"--without-debug"
"--without-mem-debug"
"--without-debugger"
];
2012-09-28 21:19:48 +00:00
postInstall = ''
mkdir -p $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";
license = "bsd";
2012-09-28 21:19:48 +00:00
platforms = stdenv.lib.platforms.linux;
2012-09-29 18:40:56 +00:00
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}