From 8be23e6636eab7047f45c5eeba3d533c7765e065 Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Sat, 21 Mar 2026 11:25:24 -0700 Subject: [PATCH] trayscale: 0.18.5 -> 0.18.7 Fix build with Go 1.26: the vendored gvisor in 0.18.5 had conflicting build tags (go125.go and go126.go both compiled on Go 1.26+). Version 0.18.7 updates gvisor to a version with correct build constraints. https://github.com/DeedleFake/trayscale/releases/tag/v0.18.7 --- pkgs/by-name/tr/trayscale/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tr/trayscale/package.nix b/pkgs/by-name/tr/trayscale/package.nix index b97ceaebcc89..4be7fe47c73c 100644 --- a/pkgs/by-name/tr/trayscale/package.nix +++ b/pkgs/by-name/tr/trayscale/package.nix @@ -12,16 +12,16 @@ buildGoModule (finalAttrs: { pname = "trayscale"; - version = "0.18.5"; + version = "0.18.7"; src = fetchFromGitHub { owner = "DeedleFake"; repo = "trayscale"; tag = "v${finalAttrs.version}"; - hash = "sha256-rrN0ofmKn8oSZ8jD3yMirTUSoXwqq1SJwXueG7mk0Ek="; + hash = "sha256-t284DpU4kmfrAgOmBZTwHYsxpl6vt7FPytv8/nsNfPM="; }; - vendorHash = "sha256-N1FaKkOVzSdY+jTVroHDshPrzMORTWN3lzf+ugirJyw="; + vendorHash = "sha256-+2NoNIbB4lXcZhj2pifQpdiKZXslAhv6lxiKUThqTVc="; subPackages = [ "cmd/trayscale" ];