internal/rosa: p11-kit artifact
Some checks failed
Test / Flake checks (push) Has been cancelled
Test / Sandbox (race detector) (push) Has started running
Test / ShareFS (push) Has started running
Test / Hakurei (race detector) (push) Has been cancelled
Test / Hakurei (push) Has been cancelled
Test / Sandbox (push) Has been cancelled
Test / Create distribution (push) Has been cancelled
Some checks failed
Test / Flake checks (push) Has been cancelled
Test / Sandbox (race detector) (push) Has started running
Test / ShareFS (push) Has started running
Test / Hakurei (race detector) (push) Has been cancelled
Test / Hakurei (push) Has been cancelled
Test / Sandbox (push) Has been cancelled
Test / Create distribution (push) Has been cancelled
Another package distributed in xz only. This is fetched from the git remote directly to avoid XZ Utils. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -101,6 +101,7 @@ const (
|
|||||||
Nettle
|
Nettle
|
||||||
Ninja
|
Ninja
|
||||||
OpenSSL
|
OpenSSL
|
||||||
|
P11Kit
|
||||||
PCRE2
|
PCRE2
|
||||||
Parallel
|
Parallel
|
||||||
Patch
|
Patch
|
||||||
|
|||||||
32
internal/rosa/p11.go
Normal file
32
internal/rosa/p11.go
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
package rosa
|
||||||
|
|
||||||
|
import "hakurei.app/internal/pkg"
|
||||||
|
|
||||||
|
func (t Toolchain) newP11Kit() (pkg.Artifact, string) {
|
||||||
|
const (
|
||||||
|
version = "0.26.2"
|
||||||
|
checksum = "3ei-6DUVtYzrRVe-SubtNgRlweXd6H2qHmUu-_5qVyIn6gSTvZbGS2u79Y8IFb2N"
|
||||||
|
)
|
||||||
|
return t.NewPackage("p11-kit", version, t.NewViaGit(
|
||||||
|
"p11-kit-src", "https://github.com/p11-glue/p11-kit.git",
|
||||||
|
"refs/tags/"+version, mustDecode(checksum),
|
||||||
|
), nil, &MesonHelper{
|
||||||
|
Setup: []KV{
|
||||||
|
{"Dsystemd", "disabled"},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Coreutils,
|
||||||
|
Diffutils,
|
||||||
|
), version
|
||||||
|
}
|
||||||
|
func init() {
|
||||||
|
artifactsM[P11Kit] = Metadata{
|
||||||
|
f: Toolchain.newP11Kit,
|
||||||
|
|
||||||
|
Name: "p11-kit",
|
||||||
|
Description: "provides a way to load and enumerate PKCS#11 modules",
|
||||||
|
Website: "https://p11-glue.freedesktop.org/p11-kit.html",
|
||||||
|
|
||||||
|
ID: 2582,
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user