diff options
author | makefu <github@syntax-fehler.de> | 2022-12-12 23:43:16 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-12-12 23:43:16 +0100 |
commit | d4281b3dbeb8452844ccb679839ad601b20fe64a (patch) | |
tree | 24ec6a895bb247e7310d7be1245b75613127446d /krebs/5pkgs/simple | |
parent | c8b5d85458093dda1e1e46bd51d2fcf39099d956 (diff) |
k pkgs.passwdqc: 1.3.0 -> 2.0.2
Diffstat (limited to 'krebs/5pkgs/simple')
-rw-r--r-- | krebs/5pkgs/simple/passwdqc-utils/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/krebs/5pkgs/simple/passwdqc-utils/default.nix b/krebs/5pkgs/simple/passwdqc-utils/default.nix index c6f866e56..1def3167c 100644 --- a/krebs/5pkgs/simple/passwdqc-utils/default.nix +++ b/krebs/5pkgs/simple/passwdqc-utils/default.nix @@ -1,17 +1,17 @@ { fetchurl, lib, stdenv , libxcrypt -, pam +, linux-pam , wordset-file ? null, # set your own wordset-file }: stdenv.mkDerivation rec { - name = "passwdqc-utils-${version}"; - version = "1.3.0"; - buildInputs = [ libxcrypt pam ]; + pname = "passwdqc-utils"; + version = "2.0.2"; + buildInputs = [ libxcrypt linux-pam ]; src = fetchurl { url = "http://www.openwall.com/passwdqc/passwdqc-${version}.tar.gz"; - sha256 = "0l3zbrp4pvah0dz33m48aqlz9nx663cc1fqhnlwr0p853b10la93"; + hash = "sha256-/x9QV2TAIPakSEseDMT9vy4/cbUikm2QtHCRBMoGBKs="; }; buildTargets = "utils"; |