aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/nettle.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-20 04:37:42 +0900
committerOphestra <cat@gensokyo.uk>2026-05-20 04:37:58 +0900
commit47f4e287fc7ec65a3de20891004462a63dea68b3 (patch)
tree24bc65bff28c00caee2da4fb4d1b282fa3eefa15 /internal/rosa/nettle.go
parent2e710328a4a64f5803de317c936912cf2ccddddf (diff)
internal/rosa/package: migrate multiple libraries
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/nettle.go')
-rw-r--r--internal/rosa/nettle.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/internal/rosa/nettle.go b/internal/rosa/nettle.go
deleted file mode 100644
index e65942b4..00000000
--- a/internal/rosa/nettle.go
+++ /dev/null
@@ -1,33 +0,0 @@
-package rosa
-
-import "hakurei.app/internal/pkg"
-
-func (t Toolchain) newNettle() (pkg.Artifact, string) {
- const (
- version = "4.0"
- checksum = "6agC-vHzzoqAlaX3K9tX8yHgrm03HLqPZzVzq8jh_ePbuPMIvpxereu_uRJFmQK7"
- )
- return t.NewPackage("nettle", version, newTar(
- "https://ftpmirror.gnu.org/gnu/nettle/nettle-"+version+".tar.gz",
- checksum,
- pkg.TarGzip,
- ), nil, (*MakeHelper)(nil),
- M4,
- Diffutils,
-
- GMP,
- ), version
-}
-func init() {
- native.mustRegister(Toolchain.newNettle, &Metadata{
- Name: "nettle",
- Description: "a low-level cryptographic library",
- Website: "https://www.lysator.liu.se/~nisse/nettle/",
-
- Dependencies: P{
- GMP,
- },
-
- ID: 2073,
- })
-}