1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/libraries/libxslt/default.nix

13 lines
270 B
Nix
Raw Normal View History

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