1
0
Fork 1
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:
aszlig 2018-05-06 05:07:39 +02:00
parent 42a0b11450
commit 8ce802e8c8
No known key found for this signature in database
GPG key ID: 684089CE67EBB691

View file

@ -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 = ''