waybar: 0.12.0 -> 0.12.0-unstable-2025-06-13 (#417650)

authored by Austin Horstman and committed by GitHub 1e01a060 a461832e

+12 -7
+2 -2
pkgs/by-name/li/libcava/package.nix
··· 8 8 cava.overrideAttrs (old: rec { 9 9 pname = "libcava"; 10 10 # fork may not be updated when we update upstream 11 - version = "0.10.3"; 11 + version = "0.10.4"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "LukashonakV"; 15 15 repo = "cava"; 16 16 tag = version; 17 - hash = "sha256-ZDFbI69ECsUTjbhlw2kHRufZbQMu+FQSMmncCJ5pagg="; 17 + hash = "sha256-9eTDqM+O1tA/3bEfd1apm8LbEcR9CVgELTIspSVPMKM="; 18 18 }; 19 19 20 20 nativeBuildInputs = old.nativeBuildInputs ++ [
+10 -5
pkgs/by-name/wa/waybar/package.nix
··· 71 71 72 72 stdenv.mkDerivation (finalAttrs: { 73 73 pname = "waybar"; 74 - version = "0.12.0"; 74 + version = "0.12.0-unstable-2025-06-13"; 75 75 76 76 src = fetchFromGitHub { 77 77 owner = "Alexays"; 78 78 repo = "Waybar"; 79 - tag = finalAttrs.version; 80 - hash = "sha256-VpT3ePqmo75Ni6/02KFGV6ltnpiV70/ovG/p1f2wKkU="; 79 + # TODO: switch back to using tag when a new version is released which 80 + # includes the fixes for issues like 81 + # https://github.com/Alexays/Waybar/issues/3956 82 + rev = "2c482a29173ffcc03c3e4859808eaef6c9014a1f"; 83 + hash = "sha256-29g4SN3Yr4q7zxYS3dU48i634jVsXHBwUUeALPAHZGM="; 81 84 }; 82 85 83 86 postUnpack = lib.optional cavaSupport '' 84 87 pushd "$sourceRoot" 85 - cp -R --no-preserve=mode,ownership ${libcava.src} subprojects/cava-0.10.3 88 + cp -R --no-preserve=mode,ownership ${libcava.src} subprojects/cava-0.10.4 86 89 patchShebangs . 87 90 popd 88 91 ''; ··· 188 191 versionCheckHook 189 192 ]; 190 193 versionCheckProgramArg = "--version"; 191 - doInstallCheck = true; 194 + 195 + # TODO: re-enable after bump to next release. 196 + doInstallCheck = false; 192 197 193 198 passthru = { 194 199 updateScript = nix-update-script { };