3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #222694 from doronbehar/pkg/gopass

gopass-jsonapi: Don't wrap with gopass
This commit is contained in:
Doron Behar 2023-03-26 03:06:58 -07:00 committed by GitHub
commit 275241c167
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -53,6 +53,9 @@ buildGoModule rec {
--prefix PATH : "${wrapperPath}" \
--set GOPASS_NO_REMINDER true
'';
passthru = {
inherit wrapperPath;
};
meta = with lib; {
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";

View file

@ -29,7 +29,7 @@ buildGoModule rec {
postFixup = ''
wrapProgram $out/bin/gopass-jsonapi \
--prefix PATH : "${lib.makeBinPath [ gopass ]}"
--prefix PATH : "${gopass.wrapperPath}"
'';
meta = with lib; {