2021-02-05 17:12:51 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform
|
2023-11-16 04:20:00 +00:00
|
|
|
, xorg, python3, pkg-config, cairo, expat, libxkbcommon }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wmfocus";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "1.5.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "svenstaro";
|
|
|
|
repo = pname;
|
2020-11-03 02:18:15 +00:00
|
|
|
rev = "v${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
sha256 = "sha256-94MgE2j8HaS8IyzHEDtoqTls2A8xD96v2iAFx9XfMcw=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
cargoHash = "sha256-sSJAlDe1vBYs1vZW/X04cU14Wj1OF4Jy8oI4uWkrEjk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ python3 pkg-config ];
|
2023-11-16 04:20:00 +00:00
|
|
|
buildInputs = [ cairo expat libxkbcommon xorg.xcbutilkeysyms ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# 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.
|
2021-12-06 16:07:01 +00:00
|
|
|
buildFeatures = [ "i3" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Visually focus windows by label";
|
|
|
|
homepage = "https://github.com/svenstaro/wmfocus";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ synthetica ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|