2016-11-07 14:10:32 +00:00
|
|
|
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
2019-05-02 23:52:13 +00:00
|
|
|
version = "8.1.1234";
|
2016-11-07 14:10:32 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vim";
|
|
|
|
repo = "vim";
|
|
|
|
rev = "v${version}";
|
2019-05-02 23:52:13 +00:00
|
|
|
sha256 = "1ywrgciwqh1kg93kfq54zh0gdxwzgy1h49wsjdsl6s4mfscmpwng";
|
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";
|
|
|
|
homepage = http://www.vim.org;
|
|
|
|
license = licenses.vim;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|