summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-12-21 16:22:20 +0100
committerGitHub <noreply@github.com>2017-12-21 16:22:20 +0100
commit36e8ea58c9d7efd32e4c1dfab302392173a038bf (patch)
tree877fbc7aa12d3283e235dcd16aae8507319d6cbb /pkgs
parent065acc44b8937552987903175ba8fffb7c844d44 (diff)
parent057d70ffec9ec17a844e151de0c4e853f1697aad (diff)
downloadnixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar.gz
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar.bz2
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar.lz
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar.xz
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.tar.zst
nixlib-36e8ea58c9d7efd32e4c1dfab302392173a038bf.zip
Merge pull request #32936 from andir/add-gopass
gopass: init at 1.6.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/gopass/default.nix45
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
new file mode 100644
index 000000000000..d03c08211c2b
--- /dev/null
+++ b/pkgs/tools/security/gopass/default.nix
@@ -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.
+    '';
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 230ee580522e..33b7da71dcd1 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };