pass-checkup: init at 0.2.0
This commit is contained in:
parent
8a74c091b2
commit
e8a36cdf57
34
pkgs/tools/security/pass/extensions/checkup.nix
Normal file
34
pkgs/tools/security/pass/extensions/checkup.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, fetchFromGitHub
|
||||||
|
, curl, findutils, gnugrep, gnused }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "pass-checkup";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "etu";
|
||||||
|
repo = "pass-checkup";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "17fyf8zj535fg43yddjww1jhxfb3nbdkn622wjxaai2nf46jzh7y";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace checkup.bash \
|
||||||
|
--replace curl ${curl}/bin/curl \
|
||||||
|
--replace find ${findutils}/bin/find \
|
||||||
|
--replace grep ${gnugrep}/bin/grep \
|
||||||
|
--replace sed ${gnused}/bin/sed
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D -m755 checkup.bash $out/lib/password-store/extensions/checkup.bash
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A pass extension to check against the Have I been pwned API to see if your passwords are publicly leaked or not.";
|
||||||
|
homepage = "https://github.com/etu/pass-checkup";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ etu ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -6,6 +6,7 @@ with pkgs;
|
|||||||
pass-audit = callPackage ./audit.nix {
|
pass-audit = callPackage ./audit.nix {
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
pass-checkup = callPackage ./checkup.nix {};
|
||||||
pass-import = callPackage ./import.nix {
|
pass-import = callPackage ./import.nix {
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user