k pkgs.passwdqc: 1.3.0 -> 2.0.2

This commit is contained in:
makefu 2022-12-12 23:43:16 +01:00
parent c8b5d85458
commit d4281b3dbe
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -1,17 +1,17 @@
{ fetchurl, lib, stdenv { fetchurl, lib, stdenv
, libxcrypt , libxcrypt
, pam , linux-pam
, wordset-file ? null, # set your own wordset-file , wordset-file ? null, # set your own wordset-file
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "passwdqc-utils-${version}"; pname = "passwdqc-utils";
version = "1.3.0"; version = "2.0.2";
buildInputs = [ libxcrypt pam ]; buildInputs = [ libxcrypt linux-pam ];
src = fetchurl { src = fetchurl {
url = "http://www.openwall.com/passwdqc/passwdqc-${version}.tar.gz"; url = "http://www.openwall.com/passwdqc/passwdqc-${version}.tar.gz";
sha256 = "0l3zbrp4pvah0dz33m48aqlz9nx663cc1fqhnlwr0p853b10la93"; hash = "sha256-/x9QV2TAIPakSEseDMT9vy4/cbUikm2QtHCRBMoGBKs=";
}; };
buildTargets = "utils"; buildTargets = "utils";