about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorVladyslav M <dywedir@pm.me>2018-05-25 16:43:41 +0300
committerRobert Schütz <rschuetz17@gmail.com>2018-05-25 15:43:41 +0200
commita0c480ab1ff65aee2b817ed5c480553bb6ef95c1 (patch)
tree3e1b103785236db3fa1f2f224261312ae2997efd /pkgs/tools/security
parent6f193b4f903d00e05815504c9590fa2f6897b615 (diff)
downloadnixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar.gz
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar.bz2
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar.lz
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar.xz
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.tar.zst
nixlib-a0c480ab1ff65aee2b817ed5c480553bb6ef95c1.zip
gopass: 1.6.11 -> 1.7.1 (#41078)
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/gopass/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index 1bbd4169f2eb..fe7d50602628 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/pkgs/tools/security/gopass/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
 
 buildGoPackage rec {
-  version = "1.6.11";
+  version = "1.7.1";
   name = "gopass-${version}";
 
   goPackagePath = "github.com/justwatchcom/gopass";
@@ -12,7 +12,7 @@ buildGoPackage rec {
     owner = "justwatchcom";
     repo = "gopass";
     rev = "v${version}";
-    sha256 = "12pih414232bsdj1qqc04vck2p9254wjy044n5kbbdqbmfgap7sj";
+    sha256 = "01cif6a2xa3c8nki0pas9mywdxs8d9niv8z13mii5hcfqvm0s7aw";
   };
 
   wrapperPath = with stdenv.lib; makeBinPath ([
@@ -38,7 +38,7 @@ buildGoPackage rec {
 
   meta = with stdenv.lib; {
     description     = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
-    homepage        = https://github.com/justwatchcom/gopass;
+    homepage        = https://www.justwatch.com/gopass/;
     license         = licenses.mit;
     maintainers     = with maintainers; [ andir ];
     platforms       = platforms.unix;