summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers/sxhkd
diff options
context:
space:
mode:
authorChris Darnell <chris@cedeel.com>2016-10-08 00:20:05 -0400
committerChris Darnell <chris@cedeel.com>2016-10-08 20:19:15 -0400
commitfd7134d9d0c468fdc55d166a50331537c437527a (patch)
tree1e1e09f9638b1f0415d65ca6ebee1cab419bdc28 /pkgs/applications/window-managers/sxhkd
parent02d7fbb678b7ee1749466143202c9651b428cd0f (diff)
sxhkd-unstable: init at 2016-08-29
Diffstat (limited to 'pkgs/applications/window-managers/sxhkd')
-rw-r--r--pkgs/applications/window-managers/sxhkd/unstable.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/sxhkd/unstable.nix b/pkgs/applications/window-managers/sxhkd/unstable.nix
new file mode 100644
index 000000000000..a3379259a8c4
--- /dev/null
+++ b/pkgs/applications/window-managers/sxhkd/unstable.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, asciidoc, libxcb, xcbutil, xcbutilkeysyms, xcbutilwm }:
+
+stdenv.mkDerivation rec {
+ name = "sxhkd-unstable-2016-08-29";
+
+ src = fetchFromGitHub {
+ owner = "baskerville";
+ repo = "sxhkd";
+ rev = "69b6acc7831bd333b39286c37188e5638ad0de27";
+ sha256 = "11i451hz0icsbxnvbq2bdl6r5kacxf6ps0yvi9ix3vkpxn4zcanh";
+ };
+
+ buildInputs = [ asciidoc libxcb xcbutil xcbutilkeysyms xcbutilwm ];
+
+ makeFlags = ''PREFIX=$(out)'';
+
+ meta = with stdenv.lib; {
+ description = "Simple X hotkey daemon (git version)";
+ inherit (src.meta) homepage;
+ license = licenses.bsd2;
+ platforms = platforms.linux;
+ };
+}