nixpkgs/pkgs/applications/window-managers/i3/wmfocus.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1001 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform
, xorg, python3, pkg-config, cairo, expat, libxkbcommon }:
2019-03-16 22:53:10 +00:00
rustPlatform.buildRustPackage rec {
pname = "wmfocus";
2024-01-01 07:01:51 +00:00
version = "1.5.0";
src = fetchFromGitHub {
owner = "svenstaro";
repo = pname;
2020-10-26 14:27:17 +00:00
rev = "v${version}";
2024-01-01 07:01:51 +00:00
sha256 = "sha256-94MgE2j8HaS8IyzHEDtoqTls2A8xD96v2iAFx9XfMcw=";
};
2024-01-01 07:01:51 +00:00
cargoHash = "sha256-sSJAlDe1vBYs1vZW/X04cU14Wj1OF4Jy8oI4uWkrEjk=";
2019-03-16 22:53:10 +00:00
nativeBuildInputs = [ python3 pkg-config ];
buildInputs = [ cairo expat libxkbcommon xorg.xcbutilkeysyms ];
2019-03-16 22:53:10 +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-11-16 00:01:57 +00:00
buildFeatures = [ "i3" ];
meta = with lib; {
2019-03-16 22:53:10 +00:00
description = "Visually focus windows by label";
mainProgram = "wmfocus";
2020-03-07 17:10:26 +00:00
homepage = "https://github.com/svenstaro/wmfocus";
license = licenses.mit;
maintainers = with maintainers; [ synthetica ];
platforms = platforms.linux;
};
}