From 38bc2c750842826c5af4f66abe3e1905258cd274 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 17 May 2026 16:44:13 +0900 Subject: internal/rosa: pass stage alongside state This cleans up many function signatures. Signed-off-by: Ophestra --- internal/rosa/pkg-config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/rosa/pkg-config.go') diff --git a/internal/rosa/pkg-config.go b/internal/rosa/pkg-config.go index 105a1e86..e362715e 100644 --- a/internal/rosa/pkg-config.go +++ b/internal/rosa/pkg-config.go @@ -2,12 +2,12 @@ package rosa import "hakurei.app/internal/pkg" -func (t Toolchain) newPkgConfig(s *S) (pkg.Artifact, string) { +func (t Toolchain) newPkgConfig() (pkg.Artifact, string) { const ( version = "0.29.2" checksum = "6UsGqEMA8EER_5b9N0b32UCqiRy39B6_RnPfvuslWhtFV1qYD4DfS10crGZN_TP2" ) - return s.NewPackage(t, "pkg-config", version, newFromGitLab( + return t.NewPackage("pkg-config", version, newFromGitLab( "gitlab.freedesktop.org", "pkg-config/pkg-config", "pkg-config-"+version, -- cgit v1.3.1