16001eab7c
Updates to v1.0.1[1] which supports subdirs and zxcvbn[2]-based complexity checks. Also, the following things changed: * Add separate output for man-pages * Enable test-suite (after adding a patch which mocks the `pwnedpasswords.com`). * Added myself as maintainer. [1] https://github.com/roddhjav/pass-audit/releases/tag/v1.0.1 / https://github.com/roddhjav/pass-audit/releases/tag/v1.0 [2] https://pypi.org/project/zxcvbn-python/
18 lines
421 B
Nix
18 lines
421 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
|
|
{
|
|
pass-audit = callPackage ./audit {
|
|
pythonPackages = python3Packages;
|
|
};
|
|
pass-checkup = callPackage ./checkup.nix {};
|
|
pass-import = callPackage ./import.nix {
|
|
pythonPackages = python3Packages;
|
|
};
|
|
pass-otp = callPackage ./otp.nix {};
|
|
pass-tomb = callPackage ./tomb.nix {};
|
|
pass-update = callPackage ./update.nix {};
|
|
pass-genphrase = callPackage ./genphrase.nix {};
|
|
}
|