aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorSimon Garrelou <simon.garrelou@airbus.com>2023-10-17 10:32:10 +0200
committerSimon Garrelou <simon.garrelou@airbus.com>2023-10-17 10:32:10 +0200
commit3b560f143005e718c385935046ac79e4e25f155f (patch)
tree210765b4e4d6e7b714c8bb80392ef350cabe1254 /pkgs
parent714aca9a60eca53aab9ea7499b53233dbca55c9d (diff)
downloadnixpkgs-3b560f143005e718c385935046ac79e4e25f155f.tar.gz
nixpkgs-3b560f143005e718c385935046ac79e4e25f155f.zip
fix passwdqc buildInputs + metadata
Diffstat (limited to 'pkgs')
-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}