2021-02-11 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-08-27 23:16:07 +00:00
|
|
|
, makeWrapper
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
2020-04-05 18:36:26 +00:00
|
|
|
, git
|
|
|
|
, gnupg
|
|
|
|
, xclip
|
|
|
|
, wl-clipboard
|
|
|
|
, passAlias ? false
|
|
|
|
}:
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2020-05-01 21:20:00 +00:00
|
|
|
buildGoModule rec {
|
2019-03-13 05:30:14 +00:00
|
|
|
pname = "gopass";
|
2023-11-25 04:20:00 +00:00
|
|
|
version = "1.15.10";
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2020-04-26 03:16:57 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
2017-12-21 10:50:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-06-20 11:53:46 +00:00
|
|
|
owner = "gopasspw";
|
2023-02-13 19:48:55 +00:00
|
|
|
repo = "gopass";
|
2017-12-21 10:50:33 +00:00
|
|
|
rev = "v${version}";
|
2023-11-25 04:20:00 +00:00
|
|
|
hash = "sha256-6s4rg2+oC+RB2gE4FQIY2MPmFSh+RxiZxaIuMI/T8hE=";
|
2017-12-21 10:50:33 +00:00
|
|
|
};
|
|
|
|
|
2023-11-25 04:20:00 +00:00
|
|
|
vendorHash = "sha256-tbZpNraGVC+p6O1MOh4vPmcwUgW5ykg7rGTNOWKFk0M=";
|
2021-02-11 04:20:00 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2020-05-01 21:20:00 +00:00
|
|
|
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
|
2020-05-01 21:20:00 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
wrapperPath = lib.makeBinPath (
|
2020-08-27 23:16:07 +00:00
|
|
|
[
|
|
|
|
git
|
|
|
|
gnupg
|
|
|
|
xclip
|
2021-01-15 09:19:50 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux wl-clipboard
|
2020-08-27 23:16:07 +00:00
|
|
|
);
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2018-04-10 10:16:56 +00:00
|
|
|
postInstall = ''
|
2021-03-13 04:20:00 +00:00
|
|
|
installManPage gopass.1
|
2022-09-21 04:22:44 +00:00
|
|
|
installShellCompletion --cmd gopass \
|
|
|
|
--zsh zsh.completion \
|
|
|
|
--bash bash.completion \
|
|
|
|
--fish fish.completion
|
2021-01-15 09:19:50 +00:00
|
|
|
'' + lib.optionalString passAlias ''
|
2020-05-05 19:14:25 +00:00
|
|
|
ln -s $out/bin/gopass $out/bin/pass
|
2018-04-10 10:16:56 +00:00
|
|
|
'';
|
|
|
|
|
2017-12-21 10:50:33 +00:00
|
|
|
postFixup = ''
|
2021-05-01 04:20:00 +00:00
|
|
|
wrapProgram $out/bin/gopass \
|
|
|
|
--prefix PATH : "${wrapperPath}" \
|
|
|
|
--set GOPASS_NO_REMINDER true
|
2017-12-21 10:50:33 +00:00
|
|
|
'';
|
2023-03-23 09:52:10 +00:00
|
|
|
passthru = {
|
|
|
|
inherit wrapperPath;
|
|
|
|
};
|
2017-12-21 10:50:33 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
2020-08-27 23:16:07 +00:00
|
|
|
homepage = "https://www.gopass.pw/";
|
|
|
|
license = licenses.mit;
|
2022-05-22 08:39:24 +00:00
|
|
|
maintainers = with maintainers; [ rvolosatovs sikmir ];
|
2023-09-24 10:39:00 +00:00
|
|
|
changelog = "https://github.com/gopasspw/gopass/blob/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.
|
|
|
|
'';
|
2023-09-24 10:39:00 +00:00
|
|
|
mainProgram = "gopass";
|
2017-12-21 10:50:33 +00:00
|
|
|
};
|
2020-07-31 03:58:04 +00:00
|
|
|
}
|