2016-11-07 17:10:32 +03:00
|
|
|
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
2020-04-08 02:13:49 +03:00
|
|
|
version = "8.2.0510";
|
2016-11-07 17:10:32 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vim";
|
|
|
|
repo = "vim";
|
|
|
|
rev = "v${version}";
|
2020-04-08 02:13:49 +03:00
|
|
|
sha256 = "16ggwf238pzzkn3ng6n09qz9cgdzha9vc0ghlcxhwilnjh12l7p9";
|
2016-11-07 17:10:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
2016-11-07 18:29:20 +03:00
|
|
|
postPatch =
|
|
|
|
# Use man from $PATH; escape sequences are still problematic.
|
|
|
|
''
|
|
|
|
substituteInPlace runtime/ftplugin/man.vim \
|
|
|
|
--replace "/usr/bin/man " "man "
|
|
|
|
'';
|
|
|
|
|
2016-11-07 17:10:32 +03:00
|
|
|
meta = with lib; {
|
|
|
|
description = "The most popular clone of the VI editor";
|
2020-03-04 02:12:12 +03:00
|
|
|
homepage = "http://www.vim.org";
|
2016-11-07 17:10:32 +03:00
|
|
|
license = licenses.vim;
|
2019-12-16 20:55:04 +03:00
|
|
|
maintainers = with maintainers; [ lovek323 equirosa ];
|
2016-11-07 17:10:32 +03:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|