summary refs log tree commit diff
path: root/pkgs/tools/misc/pubs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/pubs/default.nix')
-rw-r--r--pkgs/tools/misc/pubs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/pubs/default.nix b/pkgs/tools/misc/pubs/default.nix
index 158b56e2a5d..24367189ff0 100644
--- a/pkgs/tools/misc/pubs/default.nix
+++ b/pkgs/tools/misc/pubs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fetchpatch, python3Packages }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
   pname = "pubs";
@@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec {
     rm tests/test_git.py
     '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "Command-line bibliography manager";
     homepage = "https://github.com/pubs/pubs";
     license = licenses.lgpl3;