gopass: 1.9.2 -> 1.10.1
This commit is contained in:
parent
6daeaf26e4
commit
3416c08939
|
@ -1,5 +1,8 @@
|
|||
{ stdenv, makeWrapper
|
||||
, buildGoModule, fetchFromGitHub, installShellFiles
|
||||
{ stdenv
|
||||
, makeWrapper
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, git
|
||||
, gnupg
|
||||
, xclip
|
||||
|
@ -9,7 +12,7 @@
|
|||
|
||||
buildGoModule rec {
|
||||
pname = "gopass";
|
||||
version = "1.9.2";
|
||||
version = "1.10.1";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||||
|
||||
|
@ -17,20 +20,22 @@ buildGoModule rec {
|
|||
owner = "gopasspw";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "066dphw8xq0g72kj64sdai2yyllnr6ca27bfy5sxhk8x69j97rvz";
|
||||
sha256 = "0dhh64mxfhk610wr7bpakzgmc4a4iyhfkkl3qhjp6a46g9iygana";
|
||||
};
|
||||
|
||||
vendorSha256 = "1wn20bh7ma4pblsf6qnlbz5bx4p9apig3d1yz7cpsqv4z3w07baw";
|
||||
vendorSha256 = "07wv6yahx4yzr3h1x93x4r5rvw8wbfk836f04b4r9xjbnpq7lb2a";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}" ];
|
||||
|
||||
wrapperPath = stdenv.lib.makeBinPath ([
|
||||
git
|
||||
gnupg
|
||||
xclip
|
||||
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard);
|
||||
wrapperPath = stdenv.lib.makeBinPath (
|
||||
[
|
||||
git
|
||||
gnupg
|
||||
xclip
|
||||
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard
|
||||
);
|
||||
|
||||
postInstall = ''
|
||||
for shell in bash fish zsh; do
|
||||
|
@ -47,11 +52,11 @@ buildGoModule rec {
|
|||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
|
||||
homepage = "https://www.gopass.pw/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ andir rvolosatovs ];
|
||||
platforms = platforms.unix;
|
||||
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
|
||||
homepage = "https://www.gopass.pw/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ andir rvolosatovs ];
|
||||
platforms = platforms.unix;
|
||||
|
||||
longDescription = ''
|
||||
gopass is a rewrite of the pass password manager in Go with the aim of
|
||||
|
|
Loading…
Reference in New Issue