2016-11-07 14:10:32 +00:00
|
|
|
{ lib, fetchFromGitHub }:
|
|
|
|
rec {
|
2022-09-27 17:00:01 +00:00
|
|
|
version = "9.0.0609";
|
2016-11-07 14:10:32 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vim";
|
|
|
|
repo = "vim";
|
|
|
|
rev = "v${version}";
|
2022-09-27 17:00:01 +00:00
|
|
|
hash = "sha256-UBj3pXY6rdekKnCX/V/4o8LLBMZkNs1U4Z4KuvisIYQ=";
|
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;
|
2022-08-09 18:46:04 +00:00
|
|
|
maintainers = with maintainers; [ das_j equirosa ];
|
2016-11-07 14:10:32 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|