aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/libev.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/libev.go')
-rw-r--r--internal/rosa/libev.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/internal/rosa/libev.go b/internal/rosa/libev.go
deleted file mode 100644
index 6015382a..00000000
--- a/internal/rosa/libev.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package rosa
-
-import "hakurei.app/internal/pkg"
-
-func (t Toolchain) newLibev() (pkg.Artifact, string) {
- const (
- version = "4.33"
- checksum = "774eSXV_4k8PySRprUDChbEwsw-kzjIFnJ3MpNOl5zDpamBRvC3BqPyRxvkwcL6_"
- )
- return t.NewPackage("libev", version, newTar(
- "https://dist.schmorp.de/libev/Attic/libev-"+version+".tar.gz",
- checksum,
- pkg.TarGzip,
- ), nil, (*MakeHelper)(nil)), version
-}
-func init() {
- native.mustRegister(Toolchain.newLibev, &Metadata{
- Name: "libev",
- Description: "a full-featured and high-performance event loop",
- Website: "http://libev.schmorp.de/",
-
- ID: 1605,
- })
-}