2018-10-02 19:01:42 +03:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform,
|
|
|
|
xorg, python3, pkgconfig, cairo, libxkbcommon }:
|
|
|
|
|
2019-03-17 01:53:10 +03:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "wmfocus";
|
|
|
|
version = "1.1.2";
|
2018-10-02 19:01:42 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "svenstaro";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-03-17 01:53:10 +03:00
|
|
|
sha256 = "0jx0h2zyghs3bp4sg8f3vk5rkyprz2dqfqs0v72vmkp3cvgzxbvs";
|
2018-10-02 19:01:42 +03:00
|
|
|
};
|
|
|
|
|
2019-05-25 14:03:08 +03:00
|
|
|
cargoSha256 = "1xmc28ns59jcmnv17102s2084baxqdvi0ibbyqwb108385qnixzf";
|
2019-03-17 01:53:10 +03:00
|
|
|
|
|
|
|
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" ];
|
2018-10-02 19:01:42 +03:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-03-17 01:53:10 +03:00
|
|
|
description = "Visually focus windows by label";
|
2018-10-02 19:01:42 +03:00
|
|
|
maintainers = with maintainers; [ synthetica ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
|
|
|
homepage = https://github.com/svenstaro/wmfocus;
|
|
|
|
};
|
|
|
|
}
|