From 77745996884b71793c0c30e413c9522b01e014b6 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Sat, 5 Apr 2025 00:03:19 +0200 Subject: [PATCH] linux-pam: remove cracklib dependency upstream removed cracklib integration for password strength checking back in version 1.5.0 [1], commit d702ff714c309069111899fd07c09e31c414c166 [2]. linux-pam upstream now recommends the pam modules provided by libpwquality or passwdqc, both of which are available in nixpkgs. [1] https://github.com/linux-pam/linux-pam/releases/tag/v1.5.0 [2] https://github.com/linux-pam/linux-pam/commit/d702ff714c309069111899fd07c09e31c414c166 --- pkgs/by-name/li/linux-pam/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/li/linux-pam/package.nix b/pkgs/by-name/li/linux-pam/package.nix index a1a515097307..03bbf3299520 100644 --- a/pkgs/by-name/li/linux-pam/package.nix +++ b/pkgs/by-name/li/linux-pam/package.nix @@ -4,7 +4,6 @@ buildPackages, fetchurl, flex, - cracklib, db4, gettext, audit, @@ -51,7 +50,6 @@ stdenv.mkDerivation rec { ] ++ lib.optional stdenv.buildPlatform.isDarwin gettext; buildInputs = [ - cracklib db4 libxcrypt ] ++ lib.optional stdenv.buildPlatform.isLinux audit;