diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-19 23:26:34 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-19 23:26:34 +0900 |
| commit | 98d915af3dbab860bc1ac614a91d0a38555e624d (patch) | |
| tree | 0d2172058dfda2b2ea47cb1a0359c9e29e72e6c9 /internal/rosa/flex.go | |
| parent | c0593e83253813ba4ec9caf6784e5f2d6251e6fd (diff) | |
internal/rosa/package: migrate argp-standalone, dtc, elfutils, flex, freetype, fuse
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/flex.go')
| -rw-r--r-- | internal/rosa/flex.go | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/internal/rosa/flex.go b/internal/rosa/flex.go deleted file mode 100644 index 83719413..00000000 --- a/internal/rosa/flex.go +++ /dev/null @@ -1,30 +0,0 @@ -package rosa - -import ( - "hakurei.app/internal/pkg" -) - -func (t Toolchain) newFlex() (pkg.Artifact, string) { - const ( - version = "2.6.4" - checksum = "p9POjQU7VhgOf3x5iFro8fjhy0NOanvA7CTeuWS_veSNgCixIJshTrWVkc5XLZkB" - ) - return t.NewPackage("flex", version, newFromGitHubRelease( - "westes/flex", - "v"+version, - "flex-"+version+".tar.gz", - checksum, - pkg.TarGzip, - ), nil, (*MakeHelper)(nil), - M4, - ), version -} -func init() { - native.mustRegister(Toolchain.newFlex, &Metadata{ - Name: "flex", - Description: "scanner generator for lexing in C and C++", - Website: "https://github.com/westes/flex/", - - ID: 819, - }) -} |
