about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-07-26 11:45:19 +0100
committerGitHub <noreply@github.com>2019-07-26 11:45:19 +0100
commitfcd940feb1b313da7f8b912214241a87c3512bde (patch)
tree36c4b3113149a10fc13a8c7d6b7dd967dfb310e3
parent34919c38e3556ed1c42e5c3b004224cf263db886 (diff)
parentf0950fa3f6d3f7355d8db2eefa77b53f66562526 (diff)
downloadnixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar.gz
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar.bz2
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar.lz
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar.xz
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.tar.zst
nixlib-fcd940feb1b313da7f8b912214241a87c3512bde.zip
Merge pull request #65284 from colemickens/gopass
gopass: v1.8.5 -> v1.8.6; support wayland
-rw-r--r--pkgs/tools/security/gopass/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index b8be17e49967..a0b1f28854b9 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/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";
 
@@ -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 = ''