summary refs log tree commit diff
path: root/pkgs/tools/security/gopass/default.nix
blob: abe7aa1fc7cfa18e869693d48766293bc5379e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, makeWrapper }:

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

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

  nativeBuildInputs = [ makeWrapper ];

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

  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.
    '';
  };
}