lol

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

+5 -3
+5 -3
pkgs/by-name/fy/fyne/package.nix
··· 15 15 16 16 buildGoModule rec { 17 17 pname = "fyne"; 18 - version = "1.26.1"; 18 + # This is the current latest version 19 + # version "1.26.1" was a typo of "1.6.2" - maybe, don't "upgrade" to it 20 + version = "1.6.2"; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "fyne-io"; 22 24 repo = "tools"; 23 25 rev = "v${version}"; 24 - hash = "sha256-eBwbXyhI1s4se7krzTemoSehgSXN7mht70q8mk+yGoM="; 26 + hash = "sha256-N5v1oytSwRHE631KQDHTulUAqs/Jlr8YJqE8wy+Ygdk="; 25 27 }; 26 28 27 - vendorHash = "sha256-7B0PCKMfLULmqzIlNFeXhOUThnWSe9+gRhpswbiwLP4="; 29 + vendorHash = "sha256-LU3UkWHsf0Qt6w5tNIz11ubI+OIWkbtqqSlcoYJVFZU="; 28 30 29 31 nativeBuildInputs = [ pkg-config ]; 30 32