at 24.11-pre 23 lines 633 B view raw
1{ lib, stdenv, fetchurl, ocaml, perl }: 2 3stdenv.mkDerivation { 4 pname = "bibtex2html"; 5 version = "1.99"; 6 7 src = fetchurl { 8 url = "https://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.99.tar.gz"; 9 sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j"; 10 }; 11 12 strictDeps = true; 13 14 nativeBuildInputs = [ ocaml perl ]; 15 16 meta = with lib; { 17 description = "A collection of tools for translating from BibTeX to HTML"; 18 homepage = "https://www.lri.fr/~filliatr/bibtex2html/"; 19 license = licenses.gpl2Only; 20 platforms = ocaml.meta.platforms or []; 21 maintainers = [ maintainers.scolobb ]; 22 }; 23}