blob: 11d4f71fe255aa6f035c40f78060e1eede2ede99 (
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
|
package vim {
description = "a greatly improved version of the good old UNIX editor Vi";
website = "https://www.vim.org";
anitya = 5092;
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 ];
}
|