summary refs log tree commit diff
path: root/pkgs/tools/security/gopass
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-03-13 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-03-13 04:20:00 +0000
commit3e57dac94b8f28ae4f87382cdd72872935655aa5 (patch)
tree75d4621229b144a68ec3db20718b0e7bb25989a0 /pkgs/tools/security/gopass
parentab4767964e843954db58ff8a4f81138a072f123c (diff)
downloadnixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar.gz
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar.bz2
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar.lz
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar.xz
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.tar.zst
nixpkgs-3e57dac94b8f28ae4f87382cdd72872935655aa5.zip
gopass: 1.12.1 -> 1.12.2
https://github.com/gopasspw/gopass/releases/tag/v1.12.2
Diffstat (limited to 'pkgs/tools/security/gopass')
-rw-r--r--pkgs/tools/security/gopass/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index 0ffcad117f4..92845c6cab2 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/pkgs/tools/security/gopass/default.nix
@@ -13,7 +13,7 @@
 
 buildGoModule rec {
   pname = "gopass";
-  version = "1.12.1";
+  version = "1.12.2";
 
   nativeBuildInputs = [ installShellFiles makeWrapper ];
 
@@ -21,10 +21,10 @@ buildGoModule rec {
     owner = "gopasspw";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0ickzq2swhabxqcg32n1i99bam6ip7c0mhhncgvmw332w6pzgvlb";
+    sha256 = "14ylvb7crx32h7inklvvxjc72jz9xq3dhzr5905i76kgx57h64w9";
   };
 
-  vendorSha256 = "0i0dhipp1gdn0xdl4bpi13ksxf7dc9biz9riapm988bldcr5s1kr";
+  vendorSha256 = "0gjzghrykdw1vp873yi7k8piz3gshzndm12jm6dxgl0ph4335a54";
 
   subPackages = [ "." ];
 
@@ -46,6 +46,8 @@ buildGoModule rec {
       $out/bin/gopass completion $shell > gopass.$shell
       installShellCompletion gopass.$shell
     done
+    go run helpers/man/main.go > gopass.1
+    installManPage gopass.1
   '' + lib.optionalString passAlias ''
     ln -s $out/bin/gopass $out/bin/pass
   '';