mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 23:13:56 +00:00
215518fbc0
Currently, this is propagated from cairo, but that will soon no longer be the case.
33 lines
972 B
Nix
33 lines
972 B
Nix
{ lib, fetchFromGitHub, rustPlatform
|
|
, xorg, python3, pkg-config, cairo, expat, libxkbcommon }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wmfocus";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "svenstaro";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zXqPZORwi7X1wBTecPg9nOCvRHWNTtloCpgbPwtFhzo=";
|
|
};
|
|
|
|
cargoHash = "sha256-4eoV/viI7Q7I7mIqcHVAyPf/y2RWaWX0B+mLZWMEbcI=";
|
|
|
|
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";
|
|
homepage = "https://github.com/svenstaro/wmfocus";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ synthetica ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|