This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,22 @@
; to update, browse to https://hg.mozilla.org/projects/nss/tags
; find the last release (click on the tag, find the "changeset .. ID" line)
; rm -f lib/certdata.txt
; dune build lib/certdata.txt
; mv _build/default/lib/certdata.txt lib
;(rule
; (targets certdata.txt)
; (action
; (bash
; "wget https://hg.mozilla.org/projects/nss/raw-file/6f5cf4984f6b0873cb689dd0c1f50a9264741b93/lib/ckfw/builtins/certdata.txt -O %{targets}")))
(rule
(targets trust_anchor.ml)
(deps certdata.txt)
(action
(run %{bin:extract-from-certdata} certdata.txt --output trust_anchor.ml)))
(library
(name ca_certs_nss)
(public_name ca-certs-nss)
(modules ca_certs_nss trust_anchor)
(libraries x509 mirage-ptime digestif))