1{ stdenv, fetchurl, unzip, jre }:
2
3stdenv.mkDerivation {
4 name = "trang-20091111";
5 builder = ./builder.sh;
6
7 src = fetchurl {
8 url = https://jing-trang.googlecode.com/files/trang-20091111.zip;
9 sha256 = "16551j63n2y3w9lc7krjazddsab7xvdymbss4rdvx3liz4sg18yq";
10 };
11
12 inherit jre;
13
14 buildInputs = [ unzip ];
15
16 meta = with stdenv.lib; {
17 description = "Multi-format schema converter based on RELAX NG";
18 # The homepage is www.thaiopensource.com, but it links to googlecode.com
19 # for downloads and call it the "project site".
20 homepage = http://www.thaiopensource.com/relaxng/trang.html;
21 platforms = platforms.linux;
22 maintainers = [ maintainers.bjornfor ];
23 };
24}