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;