3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #193586 from corngood/pass-genphrase-fix

pass-genphrase: fix error when run without python in PATH
This commit is contained in:
Christian Kögler 2022-10-16 20:27:34 +02:00 committed by GitHub
commit 053cc7bf32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)" ];