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