summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2018-10-02 18:01:42 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-02 18:01:42 +0200
commitfbc1fb78e37cc29eadee4ad8687e8777eba3cf0e (patch)
treeb810c02c12e77eb3db80bbe8e8e8816181ac3316 /pkgs/applications/window-managers
parent609f9198f218ab19f02bfc53f544635656a65b52 (diff)
downloadnixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar.gz
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar.bz2
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar.lz
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar.xz
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.tar.zst
nixpkgs-fbc1fb78e37cc29eadee4ad8687e8777eba3cf0e.zip
wmfocus: init at 1.0.2 (#47662)
* wmfocus: init at 1.0.2
* wmfocus: fix buildInputs
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/i3/wmfocus.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/i3/wmfocus.nix b/pkgs/applications/window-managers/i3/wmfocus.nix
new file mode 100644
index 00000000000..546589623cb
--- /dev/null
+++ b/pkgs/applications/window-managers/i3/wmfocus.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, rustPlatform,
+  xorg, python3, pkgconfig, cairo, libxkbcommon }:
+let
+  pname = "wmfocus";
+  version = "1.0.2";
+in
+rustPlatform.buildRustPackage {
+  inherit pname version;
+  name = "${pname}-${version}";
+
+  nativeBuildInputs = [ python3 pkgconfig ];
+  buildInputs = [ cairo libxkbcommon xorg.xcbutilkeysyms ];
+
+  # For now, this is the only available featureset. This is also why the file is
+  # in the i3 folder, even though it might be useful for more than just i3
+  # users.
+  cargoBuildFlags = ["--features i3"];
+
+  src = fetchFromGitHub {
+    owner = "svenstaro";
+    repo = pname;
+    rev = version;
+    sha256 = "14yxg2jiqx7gng677sbmvv0a0msb9wpvp3qh8h3nkq0vi17ds668";
+  };
+
+  cargoSha256 = "0lwzw8gf970ybblaxxkwn3pxrncxp0hhvykffbzirs7fic4fnvsg";
+
+  meta = with stdenv.lib; {
+    description = ''
+      Tool that allows you to rapidly choose a specific window directly
+      without having to use the mouse or directional keyboard navigation.
+    '';
+    maintainers = with maintainers; [ synthetica ];
+    platforms = platforms.linux;
+    license = licenses.mit;
+    homepage = https://github.com/svenstaro/wmfocus;
+  };
+}