From e29d27491821244caf10df3c7d3063a74edcccd7 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Thu, 17 Sep 2026 06:51:03 +0200 Subject: [PATCH] vibetyper: 1.5.1 -> 1.5.2 - Refresh AppImage hash (last-modified: Wed, 16 Sep 2026) - Replace dead VIBE_DISABLE_HYPRLAND_INDICATOR_NO_BLUR env var with VIBE_DISABLE_WLROOTS_INDICATOR_RULES (renamed upstream in 1.5.x) - 1.5.x fixes: multi-monitor Wayland indicator placement (1.3.4), stuck Magic Formatter previews (1.3.5) --- pkgs/vibetyper/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/vibetyper/default.nix b/pkgs/vibetyper/default.nix index c1ae353..ac7e20d 100644 --- a/pkgs/vibetyper/default.nix +++ b/pkgs/vibetyper/default.nix @@ -1,4 +1,4 @@ -# last-modified: Fri, 24 Jul 2026 10:50:57 GMT +# last-modified: Wed, 16 Sep 2026 09:48:47 GMT { appimageTools, fetchurl, @@ -6,12 +6,12 @@ makeWrapper, }: let pname = "vibetyper"; - version = "1.5.1"; + version = "1.5.2"; # Upstream publishes to an unversioned URL — ./update.sh watches Last-Modified # and refreshes the sha256 when the binary changes. Bump `version` manually. src = fetchurl { url = "https://cdn.vibetyper.com/releases/linux/VibeTyper.AppImage"; - sha256 = "sha256-QEVFCUkcA/qK+1en3oLDGZlNvALLL6ojT+opL9K/PVU="; + sha256 = "sha256-rlbpvUcn84fil7aQci/XANcl/x/u6qIM2dmhypwI7mU="; }; appimageContents = appimageTools.extract {inherit pname version src;}; in @@ -29,7 +29,7 @@ in install -m 444 -D ${appimageContents}/vibe-typer.png \ $out/share/icons/hicolor/512x512/apps/vibe-typer.png wrapProgram $out/bin/${pname} \ - --set VIBE_DISABLE_HYPRLAND_INDICATOR_NO_BLUR 1 + --set VIBE_DISABLE_WLROOTS_INDICATOR_RULES 1 ''; passthru.updateScript = ./update.sh;