Files
hakurei/internal/rosa/package/vim.az
T
cat 8378e7a2c9 internal/rosa/package/vim: annotate blocked update
Releases are unreasonably frequent, and the package is never exposed to the end user and never expected to run unconfined or consume untrusted input. Additionally, upstream is accepting AI slop.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2026-06-25 14:06:03 +09:00

33 lines
627 B
Go

package vim {
description = "a greatly improved version of the good old UNIX editor Vi";
website = "https://www.vim.org";
anitya = 5092;
exclude = true;
block = "not exposed to end users";
version# = "9.2.0707";
source = remoteGitHub {
suffix = "vim/vim";
tag = "v"+version;
checksum = "lWJTTs_CxKsj-uOZqoPEDk3Rgac6bK8RtV32uizRxEcqRwBtBRlmCpAuhRZsSLiG";
};
writable = true;
chmod = true;
enterSource = true;
exec = make {
inPlace = true;
configure = {
"with-tlib": "ncursesw";
};
check = [ "test" ];
// very expensive
skipCheck = true;
};
inputs = [ ncurses ];
runtime = [ ncurses ];
}