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

28 lines
710 B
Nix
Raw Normal View History

2012-09-28 23:19:48 +02:00
{ stdenv, fetchurl, libxml2 }:
stdenv.mkDerivation rec {
2013-02-27 18:15:57 +01:00
name = "libxslt-1.1.28";
2012-09-28 23:19:48 +02:00
src = fetchurl {
url = "ftp://xmlsoft.org/libxml2/${name}.tar.gz";
2013-02-27 18:15:57 +01:00
sha256 = "5fc7151a57b89c03d7b825df5a0fae0a8d5f05674c0e7cf2937ecec4d54a028c";
};
2012-09-28 23:19:48 +02:00
buildInputs = [ libxml2 ];
2013-02-27 18:15:57 +01:00
patches = stdenv.lib.optionals stdenv.isSunOS [ ./patch-ah.patch ];
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 23:19:48 +02:00
platforms = stdenv.lib.platforms.linux;
2012-09-29 20:40:56 +02:00
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}