aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/vim.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/rosa/vim.go')
-rw-r--r--internal/rosa/vim.go43
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,
- })
-}