summary refs log tree commit diff
path: root/pkgs/development/libraries/libxslt/libxslt-1.1.17.nix
blob: f9e6817b18e781308278de83eb5e641244e27975 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, libxml2}:

assert libxml2 != null;

stdenv.mkDerivation {
  name = "libxslt-1.1.17";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libxslt-1.1.17.tar.gz;
    md5 = "fde6a7a93c0eb14cba628692fa3a1000";
  };
  buildInputs = [libxml2];
}