about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorVladyslav Mykhailichenko <dywedir@pm.me>2018-06-20 14:53:46 +0300
committerVladyslav Mykhailichenko <dywedir@pm.me>2018-06-20 14:53:46 +0300
commita64b88a8332d4abce55ad2e2af1393507dc04f37 (patch)
treee6564d818c95e301ae31b058bcb2b4f83612db25 /pkgs/tools/security
parent142a2289ff72af59220d6a47a85c6fae81848984 (diff)
downloadnixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar.gz
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar.bz2
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar.lz
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar.xz
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.tar.zst
nixlib-a64b88a8332d4abce55ad2e2af1393507dc04f37.zip
gopass: 1.7.1 -> 1.8.1
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/gopass/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index fe7d50602628..2d7f8b86f009 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/pkgs/tools/security/gopass/default.nix
@@ -1,18 +1,18 @@
 { stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
 
 buildGoPackage rec {
-  version = "1.7.1";
+  version = "1.8.1";
   name = "gopass-${version}";
 
-  goPackagePath = "github.com/justwatchcom/gopass";
+  goPackagePath = "github.com/gopasspw/gopass";
 
   nativeBuildInputs = [ makeWrapper ];
 
   src = fetchFromGitHub {
-    owner = "justwatchcom";
+    owner = "gopasspw";
     repo = "gopass";
     rev = "v${version}";
-    sha256 = "01cif6a2xa3c8nki0pas9mywdxs8d9niv8z13mii5hcfqvm0s7aw";
+    sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w";
   };
 
   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://www.justwatch.com/gopass/;
+    homepage        = https://www.gopass.pw/;
     license         = licenses.mit;
     maintainers     = with maintainers; [ andir ];
     platforms       = platforms.unix;