1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/bibtex2html/default.nix

22 lines
588 B
Nix
Raw Normal View History

2016-10-17 15:41:48 +01:00
{ stdenv, fetchurl, ocaml }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "bibtex2html";
2018-08-21 19:10:21 +01:00
version = "1.99";
2016-10-17 15:41:48 +01:00
src = fetchurl {
2018-08-21 19:10:21 +01:00
url = https://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.99.tar.gz;
sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
2016-10-17 15:41:48 +01: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 17:11:29 +00:00
license = licenses.gpl2;
2016-10-17 15:41:48 +01:00
platforms = ocaml.meta.platforms or [];
maintainers = [ maintainers.scolobb ];
};
}