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

33 lines
984 B
Nix
Raw Normal View History

2020-03-07 18:10:26 +01:00
{ stdenv, fetchFromGitHub, rustPlatform
, xorg, python3, pkgconfig, cairo, libxkbcommon }:
2019-03-16 23:53:10 +01:00
rustPlatform.buildRustPackage rec {
pname = "wmfocus";
2020-10-26 15:27:17 +01:00
version = "1.1.5";
src = fetchFromGitHub {
owner = "svenstaro";
repo = pname;
2020-10-26 15:27:17 +01:00
rev = "v${version}";
sha256 = "09xffklpz62h6yiksxdlv3a9s1z0wr3ax9syl399avwdmq3c0y49";
};
2020-10-26 15:27:17 +01:00
cargoSha256 = "0rczas6sgcppacz48xx7sarkvc4s2sgcdz6c661d7vcry1y46xms";
2019-03-16 23:53:10 +01: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" ];
meta = with stdenv.lib; {
2019-03-16 23:53:10 +01:00
description = "Visually focus windows by label";
2020-03-07 18:10:26 +01:00
homepage = "https://github.com/svenstaro/wmfocus";
license = licenses.mit;
maintainers = with maintainers; [ synthetica ];
platforms = platforms.linux;
};
}