forked from mirrors/nixpkgs
Merge pull request #222694 from doronbehar/pkg/gopass
gopass-jsonapi: Don't wrap with gopass
This commit is contained in:
commit
275241c167
|
@ -53,6 +53,9 @@ buildGoModule rec {
|
||||||
--prefix PATH : "${wrapperPath}" \
|
--prefix PATH : "${wrapperPath}" \
|
||||||
--set GOPASS_NO_REMINDER true
|
--set GOPASS_NO_REMINDER true
|
||||||
'';
|
'';
|
||||||
|
passthru = {
|
||||||
|
inherit wrapperPath;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
||||||
|
|
|
@ -29,7 +29,7 @@ buildGoModule rec {
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
wrapProgram $out/bin/gopass-jsonapi \
|
wrapProgram $out/bin/gopass-jsonapi \
|
||||||
--prefix PATH : "${lib.makeBinPath [ gopass ]}"
|
--prefix PATH : "${gopass.wrapperPath}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue