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/p11.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/p11.go')
| -rw-r--r-- | internal/rosa/p11.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/p11.go b/internal/rosa/p11.go index c614dc99..b0853f9d 100644 --- a/internal/rosa/p11.go +++ b/internal/rosa/p11.go @@ -2,12 +2,12 @@ package rosa import "hakurei.app/internal/pkg" -func (t Toolchain) newP11Kit(s *S) (pkg.Artifact, string) { +func (t Toolchain) newP11Kit() (pkg.Artifact, string) { const ( version = "0.26.2" checksum = "3ei-6DUVtYzrRVe-SubtNgRlweXd6H2qHmUu-_5qVyIn6gSTvZbGS2u79Y8IFb2N" ) - return s.NewPackage(t, "p11-kit", version, s.newTagRemote(t, + return t.NewPackage("p11-kit", version, t.newTagRemote( "https://github.com/p11-glue/p11-kit.git", version, checksum, ), nil, &MesonHelper{ |
