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
This commit is contained in:
Greg Hellings
2025-08-29 09:43:57 -05:00
parent 29df271e8b
commit 13214a8564
+5 -3
View File
@@ -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 ];