Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
xorg,
|
|
python3,
|
|
pkg-config,
|
|
cairo,
|
|
expat,
|
|
libxkbcommon,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wmfocus";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = "wmfocus";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-94MgE2j8HaS8IyzHEDtoqTls2A8xD96v2iAFx9XfMcw=";
|
|
};
|
|
|
|
cargoHash = "sha256-tYzJS/ApjGuvNnGuBEVr54AGcEmDhG9HtirZvtmNslY=";
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
cairo
|
|
expat
|
|
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.
|
|
buildFeatures = [ "i3" ];
|
|
|
|
meta = with lib; {
|
|
description = "Visually focus windows by label";
|
|
mainProgram = "wmfocus";
|
|
homepage = "https://github.com/svenstaro/wmfocus";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ synthetica ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|