2018-05-06 03:07:39 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
|
2017-12-21 10:50:33 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2018-06-20 11:53:46 +00:00
|
|
|
version = "1.8.1";
|
2017-12-21 10:50:33 +00:00
|
|
|
name = "gopass-${version}";
|
|
|
|
|
2018-06-20 11:53:46 +00:00
|
|
|
goPackagePath = "github.com/gopasspw/gopass";
|
2017-12-21 10:50:33 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-06-20 11:53:46 +00:00
|
|
|
owner = "gopasspw";
|
2017-12-21 10:50:33 +00:00
|
|
|
repo = "gopass";
|
|
|
|
rev = "v${version}";
|
2018-06-20 11:53:46 +00:00
|
|
|
sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w";
|
2017-12-21 10:50:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
wrapperPath = with stdenv.lib; makeBinPath ([
|
|
|
|
git
|
|
|
|
gnupg
|
2018-05-06 03:07:39 +00:00
|
|
|
xclip
|
2017-12-21 10:50:33 +00:00
|
|
|
]);
|
|
|
|
|
2018-04-10 10:16:56 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p \
|
|
|
|
$bin/share/bash-completion/completions \
|
|
|
|
$bin/share/zsh/site-functions \
|
|
|
|
$bin/share/fish/vendor_completions.d
|
2018-06-24 22:52:15 +00:00
|
|
|
# by default, gopass tries to write configuration to /homeless-shelter
|
|
|
|
# during startup, which lands in stdout
|
|
|
|
export GOPASS_CONFIG=/dev/null
|
2018-04-10 10:16:56 +00:00
|
|
|
$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
|
|
|
|
'';
|
|
|
|
|
2017-12-21 10:50:33 +00:00
|
|
|
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.";
|
2018-06-20 11:53:46 +00:00
|
|
|
homepage = https://www.gopass.pw/;
|
2017-12-21 10:50:33 +00:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|