gopass: Add xclip to wrapperPath
This is another dependency needed when invoked with "gopass -c". I opted for xclip instead of xsel, because xclip is tried first in order. Signed-off-by: aszlig <aszlig@nix.build> Cc: @andir, @suvash, @mkaito
This commit is contained in:
parent
42a0b11450
commit
8ce802e8c8
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, makeWrapper }:
|
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
version = "1.6.11";
|
version = "1.6.11";
|
||||||
@ -18,6 +18,7 @@ buildGoPackage rec {
|
|||||||
wrapperPath = with stdenv.lib; makeBinPath ([
|
wrapperPath = with stdenv.lib; makeBinPath ([
|
||||||
git
|
git
|
||||||
gnupg
|
gnupg
|
||||||
|
xclip
|
||||||
]);
|
]);
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user