Test / Create distribution (push) Successful in 54s
Test / Sandbox (push) Successful in 2m59s
Test / Hakurei (push) Successful in 4m49s
Test / Sandbox (race detector) (push) Successful in 5m50s
Test / Hakurei (race detector) (push) Successful in 7m11s
Test / ShareFS (push) Successful in 7m32s
Test / Flake checks (push) Successful in 1m10s
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 ];
|
|
}
|