mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
38313d5d87
Fixed all references, hopefully. libxml2Python is slightly hacky now, but it seems to work.
41 lines
974 B
Nix
41 lines
974 B
Nix
{ stdenv, fetchurl, libxml2, findXMLCatalogs }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libxslt-1.1.28";
|
|
|
|
src = fetchurl {
|
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
|
sha256 = "13029baw9kkyjgr7q3jccw2mz38amq7mmpr5p3bh775qawd1bisz";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "bin" "doc" ];
|
|
|
|
buildInputs = [ libxml2 ];
|
|
|
|
propagatedBuildInputs = [ findXMLCatalogs ];
|
|
|
|
patches = stdenv.lib.optionals stdenv.isSunOS [ ./patch-ah.patch ];
|
|
|
|
configureFlags = [
|
|
"--without-python"
|
|
"--without-crypto"
|
|
"--without-debug"
|
|
"--without-mem-debug"
|
|
"--without-debugger"
|
|
];
|
|
|
|
postFixup = ''
|
|
_moveToOutput bin/xslt-config "$dev"
|
|
_moveToOutput lib/xsltConf.sh "$dev"
|
|
_moveToOutput share/man/man1 "$bin"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://xmlsoft.org/XSLT/;
|
|
description = "A C library and tools to do XSL transformations";
|
|
license = "bsd";
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.eelco ];
|
|
};
|
|
}
|