2021-02-11 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-08-28 00:16:07 +01:00
|
|
|
, makeWrapper
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
2020-04-05 19:36:26 +01:00
|
|
|
, 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";
|
2021-11-14 09:29:50 +00:00
|
|
|
version = "1.13.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}";
|
2021-11-14 09:29:50 +00:00
|
|
|
sha256 = "sha256-MBpk84H3Ng/+rCjW2Scm/su0/5kgs7IzvFk/bFLNzXY=";
|
2017-12-21 10:50:33 +00:00
|
|
|
};
|
|
|
|
|
2021-11-14 09:29:50 +00:00
|
|
|
vendorSha256 = "sha256-HGc6jUp4WO5P5dwfa0r7+X78a8us9fWrf+/IOotZHqk=";
|
2021-02-11 04:20:00 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2020-05-01 22:20:00 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
|
2020-05-01 22:20:00 +01:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
wrapperPath = lib.makeBinPath (
|
2020-08-28 00:16:07 +01:00
|
|
|
[
|
|
|
|
git
|
|
|
|
gnupg
|
|
|
|
xclip
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux wl-clipboard
|
2020-08-28 00:16:07 +01:00
|
|
|
);
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2018-04-10 11:16:56 +01:00
|
|
|
postInstall = ''
|
2021-03-13 04:20:00 +00:00
|
|
|
installManPage gopass.1
|
2021-05-01 05:20:00 +01:00
|
|
|
installShellCompletion --zsh --name _gopass zsh.completion
|
|
|
|
installShellCompletion --bash --name gopass.bash bash.completion
|
|
|
|
installShellCompletion --fish --name gopass.fish fish.completion
|
2021-01-15 09:19:50 +00:00
|
|
|
'' + lib.optionalString passAlias ''
|
2020-05-05 20:14:25 +01:00
|
|
|
ln -s $out/bin/gopass $out/bin/pass
|
2018-04-10 11:16:56 +01:00
|
|
|
'';
|
|
|
|
|
2017-12-21 10:50:33 +00:00
|
|
|
postFixup = ''
|
2021-05-01 05:20:00 +01:00
|
|
|
wrapProgram $out/bin/gopass \
|
|
|
|
--prefix PATH : "${wrapperPath}" \
|
|
|
|
--set GOPASS_NO_REMINDER true
|
2017-12-21 10:50:33 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
2020-08-28 00:16:07 +01:00
|
|
|
homepage = "https://www.gopass.pw/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ andir rvolosatovs ];
|
2021-08-28 01:04:20 +01:00
|
|
|
changelog = "https://github.com/gopasspw/gopass/raw/v${version}/CHANGELOG.md";
|
2017-12-21 10:50:33 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|