about summary refs log tree commit diff
path: root/pkgs/tools/misc/bibtex2html/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/bibtex2html/default.nix')
-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 6ca528e2b1a27..0add7340ed5ad 100644
--- a/pkgs/tools/misc/bibtex2html/default.nix
+++ b/pkgs/tools/misc/bibtex2html/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, perl }:
+{ lib, stdenv, fetchurl, ocaml, perl }:
 
 stdenv.mkDerivation {
   pname = "bibtex2html";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
 
   buildInputs = [ ocaml perl ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A collection of tools for translating from BibTeX to HTML";
     homepage = "https://www.lri.fr/~filliatr/bibtex2html/";
     license = licenses.gpl2;