2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocamlPackages }:
|
2015-05-31 15:07:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-02 10:12:13 +01:00
|
|
|
pname = "hevea";
|
2022-07-31 14:59:30 +01:00
|
|
|
version = "2.36";
|
2015-05-31 15:07:06 +01:00
|
|
|
|
2004-07-16 23:58:15 +01:00
|
|
|
src = fetchurl {
|
2023-01-28 04:20:00 +00:00
|
|
|
url = "https://hevea.inria.fr/distri/hevea-${version}.tar.gz";
|
2022-07-31 14:59:30 +01:00
|
|
|
sha256 = "sha256-XWdZ13AqKVx2oSwbKhoWdUqw7B/+1z/J0LE4tB5yBkg=";
|
2015-05-31 15:07:06 +01:00
|
|
|
};
|
|
|
|
|
2022-04-04 12:57:15 +01:00
|
|
|
strictDeps = true;
|
|
|
|
|
2023-01-28 04:20:00 +00:00
|
|
|
nativeBuildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
|
2015-05-31 15:07:06 +01:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-05-31 15:07:06 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-31 15:07:06 +01:00
|
|
|
description = "Quite complete and fast LATEX to HTML translator";
|
2023-01-28 04:20:00 +00:00
|
|
|
homepage = "https://hevea.inria.fr/";
|
|
|
|
changelog = "https://github.com/maranget/hevea/raw/v${version}/CHANGES";
|
2015-05-31 15:07:06 +01:00
|
|
|
license = licenses.qpl;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2017-10-11 08:29:09 +01:00
|
|
|
platforms = with platforms; unix;
|
2004-07-16 23:58:15 +01:00
|
|
|
};
|
|
|
|
}
|