From 13214a8564bab6a5d662ded606fabb4577ca7ca6 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Fri, 22 Aug 2025 14:13:19 -0500 Subject: [PATCH] fyne: 1.26.1 -> 1.6.2 * This hot fix release resolves only the compile issue with Go v1.25.0 caused by golang.org/x/tools conflict I don't know why this is the upgrade version path, but it IS the correct versioning: https://github.com/fyne-io/tools/tags --- pkgs/by-name/fy/fyne/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/fy/fyne/package.nix b/pkgs/by-name/fy/fyne/package.nix index fa11db13290f..dc09b790b450 100644 --- a/pkgs/by-name/fy/fyne/package.nix +++ b/pkgs/by-name/fy/fyne/package.nix @@ -15,16 +15,18 @@ buildGoModule rec { pname = "fyne"; - version = "1.26.1"; + # This is the current latest version + # version "1.26.1" was a typo of "1.6.2" - maybe, don't "upgrade" to it + version = "1.6.2"; src = fetchFromGitHub { owner = "fyne-io"; repo = "tools"; rev = "v${version}"; - hash = "sha256-eBwbXyhI1s4se7krzTemoSehgSXN7mht70q8mk+yGoM="; + hash = "sha256-N5v1oytSwRHE631KQDHTulUAqs/Jlr8YJqE8wy+Ygdk="; }; - vendorHash = "sha256-7B0PCKMfLULmqzIlNFeXhOUThnWSe9+gRhpswbiwLP4="; + vendorHash = "sha256-LU3UkWHsf0Qt6w5tNIz11ubI+OIWkbtqqSlcoYJVFZU="; nativeBuildInputs = [ pkg-config ];