diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-19 04:36:32 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-19 04:36:32 +0900 |
| commit | e65a3b435ca4a000a41ddbba68a07bf7c3036f06 (patch) | |
| tree | ea65b48f6249ce69d1692b4ee2f5962cc89f29fa /internal/rosa/nettle3.go | |
| parent | 23515f67c8a74ea50e3f57d482ff13f07589ee46 (diff) | |
internal/rosa/package/gnutls: 3.8.12 to 3.8.13
The new release came with new broken tests, but at least nettle3 can be removed.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/nettle3.go')
| -rw-r--r-- | internal/rosa/nettle3.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/internal/rosa/nettle3.go b/internal/rosa/nettle3.go deleted file mode 100644 index 3a841992..00000000 --- a/internal/rosa/nettle3.go +++ /dev/null @@ -1,31 +0,0 @@ -package rosa - -import "hakurei.app/internal/pkg" - -func (t Toolchain) newNettle3() (pkg.Artifact, string) { - const ( - version = "3.10.2" - checksum = "07aXlj10X5llf67jIqRQAA1pgLSgb0w_JYggZVPuKNoc-B-_usb5Kr8FrfBe7g1S" - ) - 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.newNettle3, &Metadata{ - Name: "nettle3", - Description: "a low-level cryptographic library", - Website: "https://www.lysator.liu.se/~nisse/nettle/", - - Dependencies: P{ - GMP, - }, - }) -} |
