nixpkgs/pkgs/tools/typesetting/hevea/default.nix
Eelco Visser e5ee911e2e Hevea is an interpreter for (La)TeX that produces HTML.
It is written in OCaml.


svn path=/nixpkgs/trunk/; revision=1189
2004-07-28 10:49:55 +00:00

10 lines
272 B
Nix

{stdenv, fetchurl, ocaml}: stdenv.mkDerivation {
name = "hevea-1.07";
builder = ./builder.sh;
src = fetchurl {
url = http://pauillac.inria.fr/~maranget/hevea/distri/hevea-1.07.tar.gz;
md5 = "561d7a2c10ea9e6a5b352c24d9b65998";
};
buildInputs = [ocaml];
}