8 stdenv.mkDerivation rec {
12 src = fetchFromGitHub {
16 sha256 = "sha256-kbbMHmYmeyt7HM8YiNhknePm1vUaXWWXPWePKGpbU+o=";
19 buildInputs = [ tomb ];
23 installFlags = [ "PREFIX=$(out)" ];
26 substituteInPlace $out/lib/password-store/extensions/tomb.bash \
27 --replace 'TOMB="''${PASSWORD_STORE_TOMB:-tomb}"' 'TOMB="''${PASSWORD_STORE_TOMB:-${tomb}/bin/tomb}"'
31 description = "Pass extension that keeps the password store encrypted inside a tomb";
32 homepage = "https://github.com/roddhjav/pass-tomb";
33 license = licenses.gpl3Plus;
34 maintainers = with maintainers; [
39 platforms = platforms.unix;