about summary refs log tree commit diff
path: root/pkgs/tools/wayland
diff options
context:
space:
mode:
authorAnton Mosich <anton@mosich.at>2023-08-09 19:22:47 +0200
committerAnton Mosich <anton@mosich.at>2023-09-09 00:13:24 +0200
commit13f3a33cef3bc9c52be24135136c3f458f289ec4 (patch)
tree2dd6f10b36313eb3fb1356ab8c471bd0706454d1 /pkgs/tools/wayland
parent33b8ca4841bf04f43ef3967852c272e0f3eb0e62 (diff)
downloadnixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar.gz
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar.bz2
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar.lz
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar.xz
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.tar.zst
nixlib-13f3a33cef3bc9c52be24135136c3f458f289ec4.zip
swayr: 0.26.1 -> 0.27.0
Diffstat (limited to 'pkgs/tools/wayland')
-rw-r--r--pkgs/tools/wayland/swayr/default.nix15
1 files 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;
   };
 }