biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / bibtex2html / default.nix
blob2af4aaa0812833212a31837dde49bfa7f56856d7
1 { lib, stdenv, fetchurl, ocaml, perl }:
3 stdenv.mkDerivation {
4   pname = "bibtex2html";
5   version = "1.99";
7   src = fetchurl {
8     url = "https://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.99.tar.gz";
9     sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
10   };
12   strictDeps = true;
14   nativeBuildInputs = [ ocaml perl ];
16   meta = with lib; {
17     description = "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   };