From 13f3a33cef3bc9c52be24135136c3f458f289ec4 Mon Sep 17 00:00:00 2001 From: Anton Mosich Date: Wed, 9 Aug 2023 19:22:47 +0200 Subject: [PATCH] swayr: 0.26.1 -> 0.27.0 --- pkgs/tools/wayland/swayr/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/wayland/swayr/default.nix b/pkgs/tools/wayland/swayr/default.nix index 314032b69194..fab220dd2b5b 100644 --- a/pkgs/tools/wayland/swayr/default.nix +++ b/pkgs/tools/wayland/swayr/default.nix @@ -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; }; }