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