nixpkgs/pkgs/tools/misc/bibtex2html/default.nix

22 lines
601 B
Nix
Raw Normal View History

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