d3c7ef80ef
on non-linux they all fail various variations of meson.build:26:0: ERROR: Dependency "wayland-client" not found, tried pkgconfig and framework fatal error: 'wayland-util.h' file not found
35 lines
773 B
Nix
35 lines
773 B
Nix
{ lib, fetchFromSourcehut, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swayr";
|
|
version = "0.24.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~tsdh";
|
|
repo = "swayr";
|
|
rev = "swayr-${version}";
|
|
sha256 = "sha256-Cl/c8KfBfrBIL/AqhZK7DfEcMQNLvxOoWvAq9qqLQDQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-+z/Ru1c4U/v8EDtz5uUPy/qQu47p1BzdCIWhsHWViGY=";
|
|
|
|
patches = [
|
|
./icon-paths.patch
|
|
];
|
|
|
|
# don't build swayrbar
|
|
buildAndTestSubdir = pname;
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A window switcher (and more) for sway";
|
|
homepage = "https://git.sr.ht/~tsdh/swayr";
|
|
license = with licenses; [ gpl3Plus ];
|
|
maintainers = with maintainers; [ artturin ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|