gopass: 1.9.2 -> 1.10.1
This commit is contained in:
parent
dd4ce9215f
commit
c1492e2344
|
@ -1,5 +1,8 @@
|
||||||
{ stdenv, makeWrapper
|
{ stdenv
|
||||||
, buildGoModule, fetchFromGitHub, installShellFiles
|
, makeWrapper
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, installShellFiles
|
||||||
, git
|
, git
|
||||||
, gnupg
|
, gnupg
|
||||||
, xclip
|
, xclip
|
||||||
|
@ -26,11 +29,13 @@ buildGoModule rec {
|
||||||
|
|
||||||
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}" ];
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}" ];
|
||||||
|
|
||||||
wrapperPath = stdenv.lib.makeBinPath ([
|
wrapperPath = stdenv.lib.makeBinPath (
|
||||||
git
|
[
|
||||||
gnupg
|
git
|
||||||
xclip
|
gnupg
|
||||||
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard);
|
xclip
|
||||||
|
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard
|
||||||
|
);
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
for shell in bash fish zsh; do
|
for shell in bash fish zsh; do
|
||||||
|
@ -49,11 +54,11 @@ buildGoModule rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
|
||||||
homepage = "https://www.gopass.pw/";
|
homepage = "https://www.gopass.pw/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ andir rvolosatovs ];
|
maintainers = with maintainers; [ andir rvolosatovs ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
gopass is a rewrite of the pass password manager in Go with the aim of
|
gopass is a rewrite of the pass password manager in Go with the aim of
|
||||||
|
|
Loading…
Reference in New Issue