diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-17 16:44:13 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-17 17:50:30 +0900 |
| commit | 38bc2c750842826c5af4f66abe3e1905258cd274 (patch) | |
| tree | 75e1d17961fd980ff8b20a9dfd937789de10836e /internal/rosa/libseccomp.go | |
| parent | 30eb0d6a613ad268f6805ccbcdcabf158e7f526f (diff) | |
internal/rosa: pass stage alongside state
This cleans up many function signatures.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/libseccomp.go')
| -rw-r--r-- | internal/rosa/libseccomp.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/libseccomp.go b/internal/rosa/libseccomp.go index f152cce5..dac1b8e7 100644 --- a/internal/rosa/libseccomp.go +++ b/internal/rosa/libseccomp.go @@ -2,12 +2,12 @@ package rosa import "hakurei.app/internal/pkg" -func (t Toolchain) newLibseccomp(s *S) (pkg.Artifact, string) { +func (t Toolchain) newLibseccomp() (pkg.Artifact, string) { const ( version = "2.6.0" checksum = "mMu-iR71guPjFbb31u-YexBaanKE_nYPjPux-vuBiPfS_0kbwJdfCGlkofaUm-EY" ) - return s.NewPackage(t, "libseccomp", version, newFromGitHubRelease( + return t.NewPackage("libseccomp", version, newFromGitHubRelease( "seccomp/libseccomp", "v"+version, "libseccomp-"+version+".tar.gz", |
