forked from mirrors/nixpkgs
34 lines
742 B
Nix
34 lines
742 B
Nix
{ lib, fetchFromSourcehut, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swayr";
|
|
version = "0.19.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~tsdh";
|
|
repo = "swayr";
|
|
rev = "swayr-${version}";
|
|
sha256 = "sha256-ubindhU3G1iHqf/yiXIJk87uI3o5y2lfs22tbIfiqv4=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-X6BYLD7YmlHCO+3b3Ubai222tvsZUmZrwm3vS2PeqDY=";
|
|
|
|
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 ];
|
|
};
|
|
}
|