nixpkgs/pkgs/tools/text/xml/trang/default.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

16 lines
287 B
Nix

{stdenv, fetchurl, jre, unzip}:
stdenv.mkDerivation {
name = "trang-20030619";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/trang-20030619.zip;
md5 = "9611ea59fda0f62fecc4a5017a72984e";
};
buildInputs = [unzip];
inherit jre;
}