nixpkgs/pkgs/tools/typesetting/hevea/default.nix
Pascal Wittmann e0cc3efca2 hevea: update from 1.07 to 2.23
add meta-information and adopt it
2015-05-31 16:30:24 +02:00

24 lines
582 B
Nix

{ stdenv, fetchurl, ocaml }:
stdenv.mkDerivation rec {
name = "hevea-2.23";
src = fetchurl {
url = "http://pauillac.inria.fr/~maranget/hevea/distri/${name}.tar.gz";
sha256 = "1f9pj48518ixhjxbviv2zx27v4anp92zgg3x704g1s5cki2w33nv";
};
buildInputs = [ ocaml ];
configurePhase = ''
export makeFlags="PREFIX=$out";
'';
meta = with stdenv.lib; {
description = "A quite complete and fast LATEX to HTML translator";
homepage = http://pauillac.inria.fr/~maranget/hevea/;
license = licenses.qpl;
maintainers = with maintainers; [ pSub ];
};
}