about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/pass/extensions/checkup.nix
blob: 83a1d7a8872d974f44311cb0b05865d420d46f29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
  };
}