nixpkgs/pkgs/tools/text/xml/trang/default.nix
Eelco Dolstra 6da726d56e * Trang (tool for converting to and from RelaxNG schemas).
svn path=/nixpkgs/trunk/; revision=5579
2006-07-04 19:17:34 +00:00

16 lines
292 B
Nix

{stdenv, fetchurl, jre, unzip}:
stdenv.mkDerivation {
name = "trang-20030619";
builder = ./builder.sh;
src = fetchurl {
url = http://www.thaiopensource.com/download/trang-20030619.zip;
md5 = "9611ea59fda0f62fecc4a5017a72984e";
};
buildInputs = [unzip];
inherit jre;
}