aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs/passwdqc/package.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/passwdqc/package.nix b/pkgs/passwdqc/package.nix
index c8393bc..e1bdca3 100644
--- a/pkgs/passwdqc/package.nix
+++ b/pkgs/passwdqc/package.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
13 hash = "sha256-EgPeccqS+DDDMBVMc4bd70EMnXFuyglftxuqoaYHwNY="; 13 hash = "sha256-EgPeccqS+DDDMBVMc4bd70EMnXFuyglftxuqoaYHwNY=";
14 }; 14 };
15 15
16 propagatedBuildInputs = [ 16 buildInputs = [
17 linux-pam 17 linux-pam
18 libxcrypt 18 libxcrypt
19 ]; 19 ];
@@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
29 description = "password/passphrase strength checking and enforcement"; 29 description = "password/passphrase strength checking and enforcement";
30 homepage = "https://www.openwall.com/passwdqc/"; 30 homepage = "https://www.openwall.com/passwdqc/";
31 license = licenses.bsd0; 31 license = licenses.bsd0;
32 platforms = platforms.linux;
32 maintainers = [ maintainers.simsor ]; 33 maintainers = [ maintainers.simsor ];
33 }; 34 };
34} 35}