nixpkgs/pkgs/tools/text/xml/trang/default.nix

16 lines
292 B
Nix
Raw Normal View History

{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;
}