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