Merge pull request #254112 from antonmosich/swayr-update

This commit is contained in:
Artturi
2023-09-09 02:05:54 +03:00
committed by GitHub
+8 -7
View File
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "swayr";
version = "0.26.1";
version = "0.27.0";
src = fetchFromSourcehut {
owner = "~tsdh";
repo = "swayr";
rev = "swayr-${version}";
sha256 = "sha256-8Z83VW45Sb29PUE5oyJdELD25tAKkcr0zXfZDgkNikk=";
sha256 = "sha256-FvlBpBBvmivrnHaKYPxmRAE+PCfTxWS+tYYAFjq8Q6I=";
};
cargoHash = "sha256-QgzKmbYEmUr3qwSp58/dYwwz2tJeoJlMZfrp1vB0zjo=";
cargoHash = "sha256-Ux0Tx5+manPNUUtiCBo7FCMrBYwwUggrdpitywQ7MPk=";
patches = [
./icon-paths.patch
@@ -24,11 +24,12 @@ rustPlatform.buildRustPackage rec {
export HOME=$TMPDIR
'';
meta = with lib; {
meta = {
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;
license = lib.licenses.gpl3Plus;
mainProgram = "swayr";
maintainers = with lib.maintainers; [ artturin ];
platforms = lib.platforms.linux;
};
}