Skip to content

Commit

Permalink
cracklib: change wordlists prameter to lists for compatiblity with wo…
Browse files Browse the repository at this point in the history
…rdlists package
  • Loading branch information
Janik-Haag committed Oct 29, 2023
1 parent f8275f5 commit 15cd588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/cracklib/default.nix
Original file line number Diff line number Diff line change
@@ -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=";
}) ]
Expand All @@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
patchShebangs util
'' + ''
ln -vs ${toString wordlists} dicts/
ln -vs ${toString lists} dicts/
'';

postInstall = ''
Expand Down

0 comments on commit 15cd588

Please sign in to comment.