summary refs log tree commit diff
path: root/pkgs/tools/text/xml/trang/default.nix
blob: b87a5575d26c2b5033806cbf5a0a640eacd23c2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
}