3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request from marsam/update-hevea

hevea: fix nativeBuildInputs
This commit is contained in:
Nick Cao 2023-01-31 11:23:10 +08:00 committed by GitHub
commit a89eb3931f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,17 +5,18 @@ stdenv.mkDerivation rec {
version = "2.36";
src = fetchurl {
url = "https://pauillac.inria.fr/~maranget/hevea/distri/hevea-${version}.tar.gz";
url = "https://hevea.inria.fr/distri/hevea-${version}.tar.gz";
sha256 = "sha256-XWdZ13AqKVx2oSwbKhoWdUqw7B/+1z/J0LE4tB5yBkg=";
};
buildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
nativeBuildInputs = with ocamlPackages; [ ocaml ocamlbuild ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A quite complete and fast LATEX to HTML translator";
homepage = "http://pauillac.inria.fr/~maranget/hevea/";
homepage = "https://hevea.inria.fr/";
changelog = "https://github.com/maranget/hevea/raw/v${version}/CHANGES";
license = licenses.qpl;
maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix;