2020-04-05 19:36:26 +01:00
|
|
|
{ stdenv, makeWrapper
|
|
|
|
, buildGoModule, fetchFromGitHub, installShellFiles
|
|
|
|
, git
|
|
|
|
, gnupg
|
|
|
|
, xclip
|
|
|
|
, wl-clipboard
|
|
|
|
, passAlias ? false
|
|
|
|
}:
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2020-05-01 22:20:00 +01:00
|
|
|
buildGoModule rec {
|
2019-03-13 05:30:14 +00:00
|
|
|
pname = "gopass";
|
2020-05-01 22:20:00 +01:00
|
|
|
version = "1.9.0";
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2020-04-26 04:16:57 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
2017-12-21 10:50:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-06-20 12:53:46 +01:00
|
|
|
owner = "gopasspw";
|
2019-03-13 05:30:14 +00:00
|
|
|
repo = pname;
|
2017-12-21 10:50:33 +00:00
|
|
|
rev = "v${version}";
|
2020-05-01 22:20:00 +01:00
|
|
|
sha256 = "1cssiglhxnrk1wl8phqkhmljqig5ms5a23sdzf8lywk5f6w2gayh";
|
2017-12-21 10:50:33 +00:00
|
|
|
};
|
|
|
|
|
2020-05-01 22:20:00 +01:00
|
|
|
modSha256 = "01p3zv6dq1l68in1qqvlsh7i3ydhhanf54dyf7288x35js8wnmqa";
|
|
|
|
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.commit=${src.rev}" ];
|
|
|
|
|
2019-08-07 10:33:07 +01:00
|
|
|
wrapperPath = stdenv.lib.makeBinPath ([
|
2017-12-21 10:50:33 +00:00
|
|
|
git
|
|
|
|
gnupg
|
2018-05-06 04:07:39 +01:00
|
|
|
xclip
|
2019-08-07 10:33:07 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux wl-clipboard);
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2018-04-10 11:16:56 +01:00
|
|
|
postInstall = ''
|
2020-04-26 04:16:57 +01:00
|
|
|
for shell in bash fish zsh; do
|
2020-05-01 22:20:00 +01:00
|
|
|
$out/bin/gopass completion $shell > gopass.$shell
|
2020-04-26 04:16:57 +01:00
|
|
|
installShellCompletion gopass.$shell
|
|
|
|
done
|
2020-04-05 19:36:26 +01:00
|
|
|
'' + stdenv.lib.optionalString passAlias ''
|
|
|
|
ln -s $bin/bin/gopass $bin/bin/pass
|
2018-04-10 11:16:56 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-21 10:50:33 +00:00
|
|
|
postFixup = ''
|
2020-05-01 22:20:00 +01:00
|
|
|
wrapProgram $out/bin/gopass \
|
2017-12-21 10:50:33 +00:00
|
|
|
--prefix PATH : "${wrapperPath}"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gopass.pw/";
|
2017-12-21 10:50:33 +00:00
|
|
|
license = licenses.mit;
|
2020-05-05 19:28:40 +01:00
|
|
|
maintainers = with maintainers; [ andir rvolosatovs ];
|
2017-12-21 10:50:33 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
gopass is a rewrite of the pass password manager in Go with the aim of
|
|
|
|
making it cross-platform and adding additional features. Our target
|
|
|
|
audience are professional developers and sysadmins (and especially teams
|
|
|
|
of those) who are well versed with a command line interface. One explicit
|
|
|
|
goal for this project is to make it more approachable to non-technical
|
|
|
|
users. We go by the UNIX philosophy and try to do one thing and do it
|
|
|
|
well, providing a stellar user experience and a sane, simple interface.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|