diff options
Diffstat (limited to 'internal/rosa/nss.go')
| -rw-r--r-- | internal/rosa/nss.go | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/internal/rosa/nss.go b/internal/rosa/nss.go index 36dbedaa..5f0a2339 100644 --- a/internal/rosa/nss.go +++ b/internal/rosa/nss.go @@ -75,6 +75,10 @@ func init() { Description: "Network Security Services", Website: "https://firefox-source-docs.mozilla.org/security/nss/index.html", + Dependencies: P{ + Zlib, + }, + ID: 2503, } } @@ -92,14 +96,12 @@ func init() { } func (t Toolchain) newNSSCACert() (pkg.Artifact, string) { - return t.New("nss-cacert", 0, []pkg.Artifact{ - t.Load(Zlib), - t.Load(Bash), - t.Load(Python), + return t.New("nss-cacert", 0, t.AppendPresets(nil, + Bash, - t.Load(NSS), - t.Load(buildcatrust), - }, nil, nil, ` + NSS, + buildcatrust, + ), nil, nil, ` mkdir -p /work/system/etc/ssl/{certs/unbundled,certs/hashed,trust-source} buildcatrust \ --certdata_input /system/nss/certdata.txt \ |
