python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / hevea / default.nix
blobc2d9238bdd69d973e7c09fc7fa2afa5ee4762442
1 { lib, stdenv, fetchurl, ocamlPackages }:
3 stdenv.mkDerivation rec {
4   pname = "hevea";
5   version = "2.36";
7   src = fetchurl {
8     url = "https://pauillac.inria.fr/~maranget/hevea/distri/hevea-${version}.tar.gz";
9     sha256 = "sha256-XWdZ13AqKVx2oSwbKhoWdUqw7B/+1z/J0LE4tB5yBkg=";
10   };
12   buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
14   makeFlags = [ "PREFIX=$(out)" ];
16   meta = with lib; {
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;
22   };