about summary refs log tree commit diff
path: root/pkgs/tools/admin/chkcrontab
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/admin/chkcrontab')
-rw-r--r--pkgs/tools/admin/chkcrontab/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/admin/chkcrontab/default.nix b/pkgs/tools/admin/chkcrontab/default.nix
index 73076b65c5871..6404eb92a26eb 100644
--- a/pkgs/tools/admin/chkcrontab/default.nix
+++ b/pkgs/tools/admin/chkcrontab/default.nix
@@ -1,4 +1,4 @@
-{ python, stdenv }:
+{ python, lib, stdenv }:
 
 with python.pkgs;
 
@@ -11,7 +11,7 @@ buildPythonApplication rec {
     sha256 = "0gmxavjkjkvjysgf9cf5fcpk589gb75n1mn20iki82wifi1pk1jn";
   };
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A tool to detect crontab errors";
     license = licenses.asl20;
     maintainers = with maintainers; [ SuperSandro2000 ];