aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/vim.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-20 05:57:13 +0900
committerOphestra <cat@gensokyo.uk>2026-05-20 05:57:26 +0900
commit656059278d96c86987c261ae842592617ee17962 (patch)
tree469c3e195589e7f4005477bfe391707472ef4c29 /internal/rosa/package/vim.az
parent1a9974ffdc63e9deb24e4c83f4b4ce566311360f (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/package/vim.az')
-rw-r--r--internal/rosa/package/vim.az30
1 files changed, 30 insertions, 0 deletions
diff --git a/internal/rosa/package/vim.az b/internal/rosa/package/vim.az
new file mode 100644
index 00000000..7a5b3d0d
--- /dev/null
+++ b/internal/rosa/package/vim.az
@@ -0,0 +1,30 @@
+package vim {
+ description = "a greatly improved version of the good old UNIX editor Vi";
+ website = "https://www.vim.org";
+ anitya = 5092;
+
+ version* = "9.2.0461";
+ source = remoteGitHub {
+ suffix = "vim/vim";
+ tag = "v"+version;
+ checksum = "18Rr_5oIf_PkKuqVkN4CMZIGkZEgpN1vamlrsvPLBjn4mN98CRuoJmhzRZ7MoVYM";
+ };
+
+ writable = true;
+ chmod = true;
+ enterSource = true;
+
+ exec = make {
+ inPlace = true;
+ configure = {
+ "with-tlib": "ncursesw";
+ };
+ check = [ "test" ];
+
+ // very expensive
+ skipCheck = true;
+ };
+
+ inputs = [ ncurses ];
+ runtime = [ ncurses ];
+}