nixpkgs/pkgs/tools/security/gopass/default.nix
Florian Klink 1588d6a549 gopass: override GOPASS_CONFIG to fix completion generation (#42400)
gopass tries to write a version number to it's configuaration, even when
just generating the shell completion scripts. This fails, as
/homeless-shelter is read-only inside the sandbox.
As error messages are printed to stdout instead of stderr
(see https://github.com/gopasspw/gopass/issues/877), the error message
lands inside the completion script, thus breaking it.

Workaround that by setting GOPASS_CONFIG to `/dev/null`
2018-06-25 00:52:15 +02:00

60 lines
2.0 KiB
Nix

{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
buildGoPackage rec {
version = "1.8.1";
name = "gopass-${version}";
goPackagePath = "github.com/gopasspw/gopass";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "gopasspw";
repo = "gopass";
rev = "v${version}";
sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w";
};
wrapperPath = with stdenv.lib; makeBinPath ([
git
gnupg
xclip
]);
postInstall = ''
mkdir -p \
$bin/share/bash-completion/completions \
$bin/share/zsh/site-functions \
$bin/share/fish/vendor_completions.d
# by default, gopass tries to write configuration to /homeless-shelter
# during startup, which lands in stdout
export GOPASS_CONFIG=/dev/null
$bin/bin/gopass completion bash > $bin/share/bash-completion/completions/_gopass
$bin/bin/gopass completion zsh > $bin/share/zsh/site-functions/_gopass
$bin/bin/gopass completion fish > $bin/share/fish/vendor_completions.d/gopass.fish
'';
postFixup = ''
wrapProgram $bin/bin/gopass \
--prefix PATH : "${wrapperPath}"
'';
meta = with stdenv.lib; {
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
homepage = https://www.gopass.pw/;
license = licenses.mit;
maintainers = with maintainers; [ andir ];
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.
'';
};
}