summary refs log tree commit diff
path: root/pkgs/development/libraries/cracklib
diff options
context:
space:
mode:
authorJanik H. <janik@aq0.de>2023-10-10 16:52:00 +0200
committerJanik H. <janik@aq0.de>2023-10-29 18:52:21 +0100
commit42ba9eb2140e793bcc8f4faeaedc2e0b6405e852 (patch)
tree1f1d633188a3afcb57fda3e586f3e3b6d73fe20c /pkgs/development/libraries/cracklib
parent5897ae609173dde287cf4eb91a4e0dee93ed0c92 (diff)
downloadnixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar.gz
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar.bz2
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar.lz
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar.xz
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.tar.zst
nixpkgs-42ba9eb2140e793bcc8f4faeaedc2e0b6405e852.zip
cracklib: change wordlists prameter to lists for compatiblity with wordlists package
Diffstat (limited to 'pkgs/development/libraries/cracklib')
-rw-r--r--pkgs/development/libraries/cracklib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/cracklib/default.nix b/pkgs/development/libraries/cracklib/default.nix
index ba5d96a9518..4c0badf3df7 100644
--- a/pkgs/development/libraries/cracklib/default.nix
+++ b/pkgs/development/libraries/cracklib/default.nix
@@ -1,6 +1,6 @@
 let version = "2.9.11"; in
 { stdenv, lib, buildPackages, fetchurl, zlib, gettext
-, wordlists ? [ (fetchurl {
+, lists ? [ (fetchurl {
   url = "https://github.com/cracklib/cracklib/releases/download/v${version}/cracklib-words-${version}.gz";
   hash = "sha256-popxGjE1c517Z+nzYLM/DU7M+b1/rE0XwNXkVqkcUXo=";
 }) ]
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
     patchShebangs util
 
   '' + ''
-    ln -vs ${toString wordlists} dicts/
+    ln -vs ${toString lists} dicts/
   '';
 
   postInstall = ''