2016-08-24 20:05:02 +00:00
|
|
|
{ stdenv, pam,
|
|
|
|
fetchurl, lib,
|
|
|
|
wordset-file ? null, # set your own wordset-file
|
|
|
|
... }:
|
2015-10-06 10:15:20 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "passwdqc-utils-${version}";
|
|
|
|
version = "1.3.0";
|
|
|
|
buildInputs = [ pam ];
|
2016-08-24 20:05:02 +00:00
|
|
|
|
2015-10-06 10:15:20 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.openwall.com/passwdqc/passwdqc-${version}.tar.gz";
|
|
|
|
sha256 = "0l3zbrp4pvah0dz33m48aqlz9nx663cc1fqhnlwr0p853b10la93";
|
|
|
|
};
|
2016-08-24 20:05:02 +00:00
|
|
|
|
2015-10-06 10:15:20 +00:00
|
|
|
buildTargets = "utils";
|
|
|
|
installFlags= [ "BINDIR=$(out)/bin"
|
|
|
|
"CONFDIR=$(out)/etc"
|
|
|
|
"SHARED_LIBDIR=$(out)/lib"
|
|
|
|
"DEVEL_LIBDIR=$(out)/lib"
|
|
|
|
"SECUREDIR=$(out)/lib/security"
|
|
|
|
"INCLUDEDIR=$(out)/include"
|
2016-08-24 20:05:02 +00:00
|
|
|
"MANDIR=$(out)/man" ];
|
|
|
|
|
|
|
|
patchPhase = lib.optionalString (wordset-file != null) ''
|
|
|
|
cp -f ${wordset-file} wordset_4k.c
|
|
|
|
'';
|
|
|
|
|
2015-10-06 10:15:20 +00:00
|
|
|
installTargets = "install_lib install_utils";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "passwdqc utils (pwqgen,pwqcheck) and library";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.makefu ];
|
|
|
|
patforms = stdenv.lib.platforms.linux; # more installFlags must be set for Darwin,Solaris
|
|
|
|
};
|
|
|
|
}
|