summary refs log tree commit diff
path: root/pkgs/tools/security/john/default.nix
diff options
context:
space:
mode:
authorShawn8901 <shawn8901@googlemail.com>2023-01-24 17:35:54 +0100
committerShawn8901 <shawn8901@googlemail.com>2023-01-24 17:41:44 +0100
commit133fa5f86741d2af5ea4dc50ab98c0f23b7c2a6a (patch)
tree9dead942010487480968a8fbada2ef7c487a0033 /pkgs/tools/security/john/default.nix
parentc0aeb3305473e3a0df97785f562ea8707630e999 (diff)
treewide: remove global with lib; in pkgs/tools
Diffstat (limited to 'pkgs/tools/security/john/default.nix')
-rw-r--r--pkgs/tools/security/john/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix
index 8409bd8d2bc30..745b027a057e3 100644
--- a/pkgs/tools/security/john/default.nix
+++ b/pkgs/tools/security/john/default.nix
@@ -2,8 +2,6 @@
 , gcc, python3Packages, perl, perlPackages, makeWrapper, fetchpatch
 }:
 
-with lib;
-
 stdenv.mkDerivation rec {
   pname = "john";
   version = "1.9.0-jumbo-1";
@@ -83,7 +81,7 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  meta = {
+  meta = with lib; {
     description = "John the Ripper password cracker";
     license = licenses.gpl2Plus;
     homepage = "https://github.com/openwall/john/";