depot/third_party/nixpkgs/pkgs/tools/wayland/swayr/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

35 lines
790 B
Nix

{ lib, fetchFromSourcehut, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "swayr";
version = "0.27.3";
src = fetchFromSourcehut {
owner = "~tsdh";
repo = "swayr";
rev = "swayr-${version}";
sha256 = "sha256-3M4/uk1E5Ly9pifjoDIUEhWf1IZxwRYUC3f3qOsMyRg=";
};
cargoHash = "sha256-cjrt2jkcNbTabnhlu0P8mBIKbIpCE6L6BYlxi/fIwrg=";
patches = [
./icon-paths.patch
];
# don't build swayrbar
buildAndTestSubdir = pname;
preCheck = ''
export HOME=$TMPDIR
'';
meta = {
description = "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;
};
}