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, pkg.NewHTTPGetTar( nil, "https://dist.schmorp.de/libev/Attic/libev-"+version+".tar.gz", mustDecode(checksum), pkg.TarGzip, ), nil, (*MakeHelper)(nil)), version } func init() { artifactsM[Libev] = Metadata{ f: Toolchain.newLibev, Name: "libev", Description: "a full-featured and high-performance event loop", Website: "http://libev.schmorp.de/", ID: 1605, } }