forked from mirrors/nixpkgs
fde0b2e2f2
(cherry picked from staging commit ea5a1dd5e7
, PR #155587)
I believe this qualifies for staging-next; rebuilds aren't that huge,
and they look relatively cheap (mostly vim plugins).
31 lines
733 B
Nix
31 lines
733 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "8.2.4186";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vim";
|
|
repo = "vim";
|
|
rev = "v${version}";
|
|
sha256 = "0g276mbmq69z7c4kgj59r0azxmx9ih2sd8v83dx2gfph6wgw65ph";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
postPatch =
|
|
# Use man from $PATH; escape sequences are still problematic.
|
|
''
|
|
substituteInPlace runtime/ftplugin/man.vim \
|
|
--replace "/usr/bin/man " "man "
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The most popular clone of the VI editor";
|
|
homepage = "http://www.vim.org";
|
|
license = licenses.vim;
|
|
maintainers = with maintainers; [ lovek323 equirosa ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|