about summary refs log tree commit diff
path: root/pkgs/tools/misc/bibtex2html
diff options
context:
space:
mode:
authorAnthony Cowley <acowley@gmail.com>2021-01-07 12:51:16 -0500
committerAnthony Cowley <acowley@gmail.com>2021-01-07 12:51:16 -0500
commitd620de4a69a0e83b537ca3f982cc7ae43bb2ac32 (patch)
treecc5863018e598cceafacbb355168014e0483404f /pkgs/tools/misc/bibtex2html
parent2f47650c2f28d87f86ab807b8a339c684d91ec56 (diff)
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`.
Diffstat (limited to 'pkgs/tools/misc/bibtex2html')
-rw-r--r--pkgs/tools/misc/bibtex2html/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/bibtex2html/default.nix b/pkgs/tools/misc/bibtex2html/default.nix
index ddda4ef4445af..6ca528e2b1a27 100644
--- a/pkgs/tools/misc/bibtex2html/default.nix
+++ b/pkgs/tools/misc/bibtex2html/default.nix
@@ -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";