nixpkgs/pkgs/applications/editors/vim/common.nix
Henri Rosten ed9e2bdc72 vim: 9.0.1811 -> 9.0.1897
Signed-off-by: Henri Rosten <henri.rosten@unikie.com>
2023-09-12 07:53:06 +03:00

33 lines
788 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "9.0.1897";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
hash = "sha256-ywxJ9evXWbqZ6o6EqDIQWK16J05McAdvPl0Y9cW5Zvc=";
};
enableParallelBuilding = true;
enableParallelInstalling = false;
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; [ das_j equirosa ];
platforms = platforms.unix;
mainProgram = "vim";
};
}