about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2019-03-19 11:36:41 +0100
committerGitHub <noreply@github.com>2019-03-19 11:36:41 +0100
commited5bee94157012f51966e132eaa63ab2d2e76365 (patch)
tree68dca5d6a94ad5ab10a2259885d8256b2745bcba
parent2f410841b89bd1f0153724315bdab8ead29af03c (diff)
parentbca34cfd6e03067501d778ea29f2e9548b358e55 (diff)
downloadnixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar.gz
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar.bz2
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar.lz
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar.xz
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.tar.zst
nixlib-ed5bee94157012f51966e132eaa63ab2d2e76365.zip
Merge pull request #57772 from dywedir/wmfocus
wmfocus: 1.0.2 -> 1.1.2
-rw-r--r--pkgs/applications/window-managers/i3/wmfocus.nix34
1 files changed, 14 insertions, 20 deletions
diff --git a/pkgs/applications/window-managers/i3/wmfocus.nix b/pkgs/applications/window-managers/i3/wmfocus.nix
index 546589623cbd..c249929b2160 100644
--- a/pkgs/applications/window-managers/i3/wmfocus.nix
+++ b/pkgs/applications/window-managers/i3/wmfocus.nix
@@ -1,35 +1,29 @@
 { 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"];
+rustPlatform.buildRustPackage rec {
+  pname = "wmfocus";
+  version = "1.1.2";
 
   src = fetchFromGitHub {
     owner = "svenstaro";
     repo = pname;
     rev = version;
-    sha256 = "14yxg2jiqx7gng677sbmvv0a0msb9wpvp3qh8h3nkq0vi17ds668";
+    sha256 = "0jx0h2zyghs3bp4sg8f3vk5rkyprz2dqfqs0v72vmkp3cvgzxbvs";
   };
 
-  cargoSha256 = "0lwzw8gf970ybblaxxkwn3pxrncxp0hhvykffbzirs7fic4fnvsg";
+  cargoSha256 = "01ifrk6whvckys1kbj65cdwh976yn7dy9vpf4jybnlqripknab43";
+
+  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" ];
 
   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.
-    '';
+    description = "Visually focus windows by label";
     maintainers = with maintainers; [ synthetica ];
     platforms = platforms.linux;
     license = licenses.mit;