Skip to content

Commit

Permalink
Merge pull request #65284 from colemickens/gopass
Browse files Browse the repository at this point in the history
gopass: v1.8.5 -> v1.8.6; support wayland
  • Loading branch information
Mic92 committed Jul 26, 2019
2 parents 34919c3 + f0950fa commit fcd940f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkgs/tools/security/gopass/default.nix
@@ -1,8 +1,8 @@
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, wl-clipboard, makeWrapper }:

buildGoPackage rec {
pname = "gopass";
version = "1.8.5";
version = "1.8.6";

goPackagePath = "github.com/gopasspw/gopass";

Expand All @@ -12,13 +12,14 @@ buildGoPackage rec {
owner = "gopasspw";
repo = pname;
rev = "v${version}";
sha256 = "1mgc77j5b9pjf2ayd5c09ym6d8n1yia8yg87zw0b8fsh5wac41sl";
sha256 = "0v3sx9hb03bdn4rvsv2r0jzif6p1rx47hrkpsbnwva31k396mck2";
};

wrapperPath = with stdenv.lib; makeBinPath ([
git
gnupg
xclip
wl-clipboard
]);

postInstall = ''
Expand Down

0 comments on commit fcd940f

Please sign in to comment.