blob: 1ea7883cd0708ca122f907ff06e96353c8fd003d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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 ];
}
|