Merge remote-tracking branch 'ni/master'

This commit is contained in:
lassulus 2022-12-13 14:51:31 +01:00
commit 2ab781fca9

View File

@ -1,4 +1,5 @@
{ fetchurl, lib, stdenv { fetchurl, lib, stdenv
, libxcrypt
, pam , pam
, wordset-file ? null, # set your own wordset-file , wordset-file ? null, # set your own wordset-file
}: }:
@ -6,7 +7,7 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "passwdqc-utils-${version}"; name = "passwdqc-utils-${version}";
version = "1.3.0"; version = "1.3.0";
buildInputs = [ pam ]; buildInputs = [ libxcrypt 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";