nixpkgs/pkgs/tools/security/gopass/default.nix

76 lines
2.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-08-27 23:16:07 +00:00
, makeWrapper
, buildGoModule
, fetchFromGitHub
, installShellFiles
, git
, gnupg
, xclip
, wl-clipboard
, passAlias ? false
}:
2017-12-21 10:50:33 +00:00
buildGoModule rec {
pname = "gopass";
2021-07-02 11:05:35 +00:00
version = "1.12.7";
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";
repo = pname;
2017-12-21 10:50:33 +00:00
rev = "v${version}";
2021-07-02 11:05:35 +00:00
sha256 = "08mzm03vhc8pqyl17y8dkrcpgy3ckmb84x84b6ap3cja3y8gmj5x";
2017-12-21 10:50:33 +00:00
};
2021-07-02 11:05:35 +00:00
vendorSha256 = "0ym6f1h51bj3qlzxs936fz3p47l63nad4xckl16m13iy0k7z5flg";
subPackages = [ "." ];
doCheck = false;
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
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
postInstall = ''
installManPage gopass.1
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 ''
ln -s $out/bin/gopass $out/bin/pass
'';
2017-12-21 10:50:33 +00:00
postFixup = ''
wrapProgram $out/bin/gopass \
--prefix PATH : "${wrapperPath}" \
--set GOPASS_NO_REMINDER true
2017-12-21 10:50:33 +00:00
'';
meta = with lib; {
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;
maintainers = with maintainers; [ andir rvolosatovs ];
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.
'';
};
}