2013-08-22 20:40:37 +01:00
|
|
|
{ stdenv, fetchurl, unzip, jre }:
|
2006-07-04 20:17:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-08-22 20:40:37 +01:00
|
|
|
name = "trang-20091111";
|
2006-07-04 20:17:34 +01:00
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-08-22 20:40:37 +01:00
|
|
|
url = https://jing-trang.googlecode.com/files/trang-20091111.zip;
|
|
|
|
sha256 = "16551j63n2y3w9lc7krjazddsab7xvdymbss4rdvx3liz4sg18yq";
|
2006-07-04 20:17:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit jre;
|
2013-08-22 20:40:37 +01:00
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Multi-format schema converter based on RELAX NG";
|
|
|
|
# The homepage is www.thaiopensource.com, but it links to googlecode.com
|
|
|
|
# for downloads and call it the "project site".
|
|
|
|
homepage = http://www.thaiopensource.com/relaxng/trang.html;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
2006-07-04 20:17:34 +01:00
|
|
|
}
|