internal/rosa/package: migrate nss
All checks were successful
Test / Create distribution (push) Successful in 1m4s
Test / Sandbox (push) Successful in 3m2s
Test / ShareFS (push) Successful in 3m46s
Test / Hakurei (push) Successful in 3m54s
Test / Sandbox (race detector) (push) Successful in 5m24s
Test / Hakurei (race detector) (push) Successful in 6m34s
Test / Flake checks (push) Successful in 1m23s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-05-21 15:35:48 +09:00
parent 1acb5b0105
commit cbf18b302d
18 changed files with 196 additions and 209 deletions

View File

@@ -5,8 +5,7 @@ import (
"strings"
)
// Meson is the meson package used by [MesonHelper].
var Meson = H("meson")
var _meson = H("meson")
// MesonHelper is the [Meson] build system helper.
type MesonHelper struct {
@@ -26,7 +25,7 @@ type MesonHelper struct {
var _ Helper = new(MesonHelper)
// extra returns hardcoded meson runtime dependencies.
func (*MesonHelper) extra(int) P { return P{Meson} }
func (*MesonHelper) extra(int) P { return P{_meson} }
// wantsChmod returns false.
func (*MesonHelper) wantsChmod() bool { return false }