1 { lib, stdenv, fetchurl, ocamlPackages }:
3 stdenv.mkDerivation rec {
8 url = "https://pauillac.inria.fr/~maranget/hevea/distri/hevea-${version}.tar.gz";
9 sha256 = "sha256-XWdZ13AqKVx2oSwbKhoWdUqw7B/+1z/J0LE4tB5yBkg=";
12 buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
14 makeFlags = [ "PREFIX=$(out)" ];
17 description = "A quite complete and fast LATEX to HTML translator";
18 homepage = "http://pauillac.inria.fr/~maranget/hevea/";
19 license = licenses.qpl;
20 maintainers = with maintainers; [ pSub ];
21 platforms = with platforms; unix;