summary refs log tree commit diff
diff options
context:
space:
mode:
author_1126 <mail@elfsechsundzwanzig.de>2015-05-30 10:44:47 +0200
committer_1126 <mail@elfsechsundzwanzig.de>2015-05-30 10:44:47 +0200
commit12bfdb5ead03c9e889e303c3360e01f00546d416 (patch)
tree3ffb9e6f0e890645765092bdc97cd0908004ba8f
parentc04784dfd61cab73f23f51509a1b989415a8a3de (diff)
downloadnixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar.gz
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar.bz2
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar.lz
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar.xz
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.tar.zst
nixlib-12bfdb5ead03c9e889e303c3360e01f00546d416.zip
rofi-pass: add rofi to deps, adjust description
-rw-r--r--pkgs/applications/misc/rofi/pass.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/rofi/pass.nix b/pkgs/applications/misc/rofi/pass.nix
index 791cd995adba..e20c511be91e 100644
--- a/pkgs/applications/misc/rofi/pass.nix
+++ b/pkgs/applications/misc/rofi/pass.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, wmctrl, xprop, xdotool}:
+{ stdenv, fetchgit, rofi, wmctrl, xprop, xdotool}:
 
 stdenv.mkDerivation rec {
   name = "rofi-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "17k9jmmckqaw75i0qsay2gc8mrjrs6jjfwfxaggspj912sflmjng";
   };
 
-  buildInputs = [ wmctrl xprop xdotool ];
+  buildInputs = [ rofi wmctrl xprop xdotool ];
 
   dontBuild = true;
 
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = {
-      description = "Rofi script to work with password-store";
+      description = "A script to make rofi work with password-store";
       homepage = https://github.com/carnager/rofi-pass;
       maintainers = [stdenv.lib.maintainers._1126];
   };