Skip to content

Commit

Permalink
wmfocus: init at 1.0.2 (#47662)
Browse files Browse the repository at this point in the history
* wmfocus: init at 1.0.2
* wmfocus: fix buildInputs
  • Loading branch information
Synthetica9 authored and xeji committed Oct 2, 2018
1 parent 609f919 commit fbc1fb7
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/applications/window-managers/i3/wmfocus.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17096,6 +17096,8 @@ with pkgs;

i3-wk-switch = callPackage ../applications/window-managers/i3/wk-switch.nix { };

wmfocus = callPackage ../applications/window-managers/i3/wmfocus.nix { };

i810switch = callPackage ../os-specific/linux/i810switch { };

icewm = callPackage ../applications/window-managers/icewm {};
Expand Down

0 comments on commit fbc1fb7

Please sign in to comment.