8 stdenv.mkDerivation rec {
9 pname = "pass-genphrase";
12 src = fetchFromGitHub {
14 repo = "pass-genphrase";
16 sha256 = "01dff2jlp111y7vlmp1wbgijzphhlzc19m02fs8nzmn5vxyffanx";
21 buildInputs = [ python3 ];
23 installTargets = [ "globalinstall" ];
25 installFlags = [ "PREFIX=$(out)" ];
28 substituteInPlace $out/lib/password-store/extensions/genphrase.bash \
29 --replace '$EXTENSIONS' "$out/lib/password-store/extensions/"
33 description = "Pass extension that generates memorable passwords";
34 homepage = "https://github.com/congma/pass-genphrase";
35 license = licenses.gpl3;
36 maintainers = with maintainers; [ seqizz ];
37 platforms = platforms.unix;