35 lines
792 B
Nix
35 lines
792 B
Nix
{ lib, fetchFromSourcehut, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swayr";
|
|
version = "0.27.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~tsdh";
|
|
repo = "swayr";
|
|
rev = "swayr-${version}";
|
|
sha256 = "sha256-FvlBpBBvmivrnHaKYPxmRAE+PCfTxWS+tYYAFjq8Q6I=";
|
|
};
|
|
|
|
cargoHash = "sha256-Ux0Tx5+manPNUUtiCBo7FCMrBYwwUggrdpitywQ7MPk=";
|
|
|
|
patches = [
|
|
./icon-paths.patch
|
|
];
|
|
|
|
# don't build swayrbar
|
|
buildAndTestSubdir = pname;
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
meta = {
|
|
description = "A window switcher (and more) for sway";
|
|
homepage = "https://git.sr.ht/~tsdh/swayr";
|
|
license = lib.licenses.gpl3Plus;
|
|
mainProgram = "swayr";
|
|
maintainers = with lib.maintainers; [ artturin ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|