summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorChristian Lask <christian@hiberno.net>2016-06-14 09:54:19 +0200
committerChristian Lask <christian@hiberno.net>2016-06-14 10:07:59 +0200
commit4e59526bf4f4b69524a520f443ddf048342103fb (patch)
treef71fa07e3174ceb6d8a8d224b30f35fc66d32e0f /pkgs/tools/security
parent886c03ad2ec5fed59831bd552d34ba03327f2ac7 (diff)
downloadnixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar.gz
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar.bz2
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar.lz
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar.xz
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.tar.zst
nixpkgs-4e59526bf4f4b69524a520f443ddf048342103fb.zip
rofi-pass: 1.3.1 -> 1.3.2
Note: You'll need to add the `_rofi` command to your config of rofi-pass
to make this release work. Refer to config.example for an example of
how this might look like. For more information on this change, see
https://github.com/carnager/rofi-pass/commit/75cf7151588927122d696dc1daa95fee1ba43644.
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/pass/rofi-pass.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/security/pass/rofi-pass.nix b/pkgs/tools/security/pass/rofi-pass.nix
index 45cd0f0e20b..51f44c3c7df 100644
--- a/pkgs/tools/security/pass/rofi-pass.nix
+++ b/pkgs/tools/security/pass/rofi-pass.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchgit
-, pass, rofi, coreutils, utillinux, xdotool, gnugrep, pwgen, findutils
+, pass, rofi, coreutils, utillinux, xdotool, gnugrep, pwgen, findutils, gawk
 , makeWrapper }:
 
 stdenv.mkDerivation rec {
   name = "rofi-pass-${version}";
-  version = "1.3.1";
+  version = "1.3.2";
 
   src = fetchgit {
     url = "https://github.com/carnager/rofi-pass";
     rev = "refs/tags/${version}";
-    sha256 = "1r206fq96avhlgkf2fzf8j2a25dav0s945qv66hwvqwhxq74frrv";
+    sha256 = "1xqp8s0yyjs2ca9mf8lbz8viwl9xzxf5kk1v68v9hqdgxj26wgls";
   };
 
   buildInputs = [ makeWrapper ];
@@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
     rofi
     utillinux
     xdotool
+    gawk
   ];
 
   fixupPhase = ''