summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorDaniel Bergey <bergey@alum.mit.edu>2014-06-06 01:22:24 +0000
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-11 23:36:28 +0200
commitaf3d448d335cd22355b6b84857520cfa5cfb380e (patch)
tree9ed592a86193b402610b3849bd68428e902f1647 /pkgs/tools/security
parent9e46a0d748e4ac5816013635035714327a5fcf93 (diff)
downloadnixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar.gz
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar.bz2
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar.lz
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar.xz
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.tar.zst
nixlib-af3d448d335cd22355b6b84857520cfa5cfb380e.zip
pass(word-store): add option to include xclip in PATH
xclip is necessary for pass(word-store) to send passwords to the
clipboard / X-selection, rather than echoing to the terminal.

The option currently defaults to false, because someone may not want the
dependency on X libraries and also pass is really quick to build (it's
just a shell script).
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/pass/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix
index 505bdd2efc86..d3e2c50991a1 100644
--- a/pkgs/tools/security/pass/default.nix
+++ b/pkgs/tools/security/pass/default.nix
@@ -1,6 +1,10 @@
 { stdenv, fetchurl
 , coreutils, gnused, getopt, pwgen, git, tree, gnupg
-, makeWrapper }:
+, makeWrapper
+, withX ? false, xclip ? null
+}:
+
+assert withX -> xclip != null;
 
 stdenv.mkDerivation rec {
   version = "1.6.2";
@@ -51,6 +55,6 @@ stdenv.mkDerivation rec {
 
     # Ensure all dependencies are in PATH
     wrapProgram $out/bin/pass \
-      --prefix PATH : "${coreutils}/bin:${gnused}/bin:${getopt}/bin:${gnupg}/bin:${git}/bin:${tree}/bin:${pwgen}/bin"
+      --prefix PATH : "${coreutils}/bin:${gnused}/bin:${getopt}/bin:${gnupg}/bin:${git}/bin:${tree}/bin:${pwgen}/bin${if withX then ":${xclip}/bin" else ""}"
   '';
 }