1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/development/libraries/libxslt/libxslt-1.1.17.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

13 lines
270 B
Nix

{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];
}