forked from rosa/hakurei
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments. Signed-off-by: Ophestra <cat@gensokyo.uk>
33 lines
621 B
Go
33 lines
621 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 {
|
|
chdir = false;
|
|
configure = {
|
|
"with-tlib": "ncursesw";
|
|
};
|
|
check = [ "test" ];
|
|
|
|
// very expensive
|
|
check = nil;
|
|
};
|
|
|
|
inputs = [ ncurses ];
|
|
runtime = [ ncurses ];
|
|
}
|