2016-10-17 07:41:48 -07:00
|
|
|
{ stdenv, fetchurl, ocaml }:
|
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "bibtex2html";
|
2018-08-21 11:10:21 -07:00
|
|
|
version = "1.99";
|
2016-10-17 07:41:48 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-08-21 11:10:21 -07:00
|
|
|
url = https://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.99.tar.gz;
|
|
|
|
sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
|
2016-10-17 07:41:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ocaml ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A collection of tools for translating from BibTeX to HTML";
|
|
|
|
homepage = https://www.lri.fr/~filliatr/bibtex2html/;
|
2016-11-20 09:11:29 -08:00
|
|
|
license = licenses.gpl2;
|
2016-10-17 07:41:48 -07:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
|
|
|
maintainers = [ maintainers.scolobb ];
|
|
|
|
};
|
|
|
|
}
|