mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
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 {
|
||||
version = "1.6.11";
|
||||
|
@ -18,6 +18,7 @@ buildGoPackage rec {
|
|||
wrapperPath = with stdenv.lib; makeBinPath ([
|
||||
git
|
||||
gnupg
|
||||
xclip
|
||||
]);
|
||||
|
||||
postInstall = ''
|
||||
|
|
Loading…
Reference in a new issue