diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-20 05:57:13 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-20 05:57:26 +0900 |
| commit | 656059278d96c86987c261ae842592617ee17962 (patch) | |
| tree | 469c3e195589e7f4005477bfe391707472ef4c29 /internal/rosa/vim.go | |
| parent | 1a9974ffdc63e9deb24e4c83f4b4ce566311360f (diff) | |
internal/rosa/package: migrate remaining trivial packages
The rest are migrated individually.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/vim.go')
| -rw-r--r-- | internal/rosa/vim.go | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/internal/rosa/vim.go b/internal/rosa/vim.go deleted file mode 100644 index 7c67ca81..00000000 --- a/internal/rosa/vim.go +++ /dev/null @@ -1,43 +0,0 @@ -package rosa - -import "hakurei.app/internal/pkg" - -func (t Toolchain) newVIM() (pkg.Artifact, string) { - const ( - version = "9.2.0461" - checksum = "18Rr_5oIf_PkKuqVkN4CMZIGkZEgpN1vamlrsvPLBjn4mN98CRuoJmhzRZ7MoVYM" - ) - return t.NewPackage("vim", version, newFromGitHub( - "vim/vim", - "v"+version, - checksum, - ), &PackageAttr{ - Chmod: true, - Writable: true, - EnterSource: true, - }, &MakeHelper{ - InPlace: true, - Configure: []KV{ - {"with-tlib", "ncursesw"}, - }, - Check: []string{"test"}, - - // very expensive - SkipCheck: true, - }, - Ncurses, - ), version -} -func init() { - native.mustRegister(Toolchain.newVIM, &Metadata{ - Name: "vim", - Description: "a greatly improved version of the good old UNIX editor Vi", - Website: "https://www.vim.org", - - Dependencies: P{ - Ncurses, - }, - - ID: 5092, - }) -} |
