aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/p11.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-20 05:01:06 +0900
committerOphestra <cat@gensokyo.uk>2026-05-20 05:01:06 +0900
commit1a2699b4867b7a736eedd973d69659ef468a994a (patch)
tree81c6868c424a59d9c4203f9799c836455b74ec79 /internal/rosa/p11.go
parent1d3d621e2fffb82fa512e485ad47298183d13880 (diff)
internal/rosa/package: migrate multiple packages
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/p11.go')
-rw-r--r--internal/rosa/p11.go38
1 files changed, 0 insertions, 38 deletions
diff --git a/internal/rosa/p11.go b/internal/rosa/p11.go
deleted file mode 100644
index 985714a7..00000000
--- a/internal/rosa/p11.go
+++ /dev/null
@@ -1,38 +0,0 @@
-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.newTagRemote(
- "https://github.com/p11-glue/p11-kit.git",
- version, checksum,
- ), nil, &MesonHelper{
- Setup: []KV{
- {"Dsystemd", "disabled"},
- {"Dlibffi", "enabled"},
- },
- },
- Coreutils,
- Diffutils,
-
- Libtasn1,
- ), version
-}
-func init() {
- native.mustRegister(Toolchain.newP11Kit, &Metadata{
- Name: "p11-kit",
- Description: "provides a way to load and enumerate PKCS#11 modules",
- Website: "https://p11-glue.freedesktop.org/p11-kit.html",
-
- Dependencies: P{
- Libffi,
- Libtasn1,
- },
-
- ID: 2582,
- })
-}