Merge pull request #108704 from acowley/aux2bib

bibtex2html: add perl dependency
This commit is contained in:
Sandro 2021-01-08 00:30:04 +01:00 committed by GitHub
commit 610ec6fe8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml }: { stdenv, fetchurl, ocaml, perl }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "bibtex2html"; pname = "bibtex2html";
@ -9,7 +9,7 @@ stdenv.mkDerivation {
sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j"; sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
}; };
buildInputs = [ ocaml ]; buildInputs = [ ocaml perl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A collection of tools for translating from BibTeX to HTML"; description = "A collection of tools for translating from BibTeX to HTML";