{ lib, fetchFromSourcehut, rustPlatform }: rustPlatform.buildRustPackage rec { pname = "swayr"; version = "0.25.0"; src = fetchFromSourcehut { owner = "~tsdh"; repo = "swayr"; rev = "swayr-${version}"; sha256 = "sha256-LaLliChsdsQePoRAxI7Sq5B68+uAtGuVrJKdTdva6cI="; }; cargoHash = "sha256-D631vqlwaWaLkBxpDFEINAXVzbi7e2K9QiRfyKPW5+A="; 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; }; }