pass-genphrase: fix error when run without python in PATH

This commit is contained in:
David McFarland 2022-09-29 18:40:30 -03:00
parent e295c223cd
commit d1d0aa0d88

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub }:
{ lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
pname = "pass-genphrase";
@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
dontBuild = true;
buildInputs = [ python3 ];
installTargets = [ "globalinstall" ];
installFlags = [ "PREFIX=$(out)" ];