bibtex2html: add perl dependency
The `aux2bib` tool that is part of the bibtex2html package requires perl. Without this dependency, the `aux2bib` script is installed with a shebang pointing to `/usr/bin/perl`.
This commit is contained in:
parent
2f47650c2f
commit
d620de4a69
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ocaml }:
|
||||
{ stdenv, fetchurl, ocaml, perl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "bibtex2html";
|
||||
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml ];
|
||||
buildInputs = [ ocaml perl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A collection of tools for translating from BibTeX to HTML";
|
||||
|
Loading…
Reference in New Issue
Block a user