Skip to content

Commit

Permalink
gopass: init at 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
andir committed Dec 21, 2017
1 parent f1da792 commit 057d70f
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/tools/security/gopass/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, makeWrapper }:

buildGoPackage rec {
version = "1.6.6";
name = "gopass-${version}";

goPackagePath = "github.com/justwatchcom/gopass";

nativeBuildInputs = [ makeWrapper ];

src = fetchFromGitHub {
owner = "justwatchcom";
repo = "gopass";
rev = "v${version}";
sha256 = "0n3isjrjpn2cnlwfdkjdcz5j8n16dhyaw4zyjpmis51nl0bqd3jw";
};

wrapperPath = with stdenv.lib; makeBinPath ([
git
gnupg
]);

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://github.com/justwatchcom/gopass;
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.
'';
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,8 @@ with pkgs;

pass = callPackage ../tools/security/pass { };

gopass = callPackage ../tools/security/gopass { };

browserpass = callPackage ../tools/security/browserpass { };

oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { };
Expand Down

0 comments on commit 057d70f

Please sign in to comment.