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

36 lines
859 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libxml2, findXMLCatalogs }:
stdenv.mkDerivation rec {
2013-02-27 17:15:57 +00:00
name = "libxslt-1.1.28";
2012-09-28 21:19:48 +00:00
src = fetchurl {
url = "http://xmlsoft.org/sources/${name}.tar.gz";
sha256 = "13029baw9kkyjgr7q3jccw2mz38amq7mmpr5p3bh775qawd1bisz";
};
2012-09-28 21:19:48 +00:00
2015-07-26 22:25:53 +00:00
outputs = [ "out" "doc" ];
2012-09-28 21:19:48 +00:00
buildInputs = [ libxml2 ];
propagatedBuildInputs = [ findXMLCatalogs ];
2013-02-27 17:15:57 +00:00
patches = stdenv.lib.optionals stdenv.isSunOS [ ./patch-ah.patch ];
configureFlags = [
"--with-libxml-prefix=${libxml2}"
"--without-python"
"--without-crypto"
"--without-debug"
"--without-mem-debug"
"--without-debugger"
];
meta = {
homepage = http://xmlsoft.org/XSLT/;
description = "A C library and tools to do XSL transformations";
license = "bsd";
platforms = stdenv.lib.platforms.unix;
2012-09-29 18:40:56 +00:00
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}