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