3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/editors/vim/common.nix
Maximilian Bosch bfd2a6d471
vim: 9.0.0180 -> 9.0.0244
Fixes CVE-2022-2816, CVE-2022-2817, CVE-2022-2819, CVE-2022-2845,
CVE-2022-2849, CVE-2022-2862, CVE-2022-2874, CVE-2022-2889.
2022-08-22 16:37:06 +02:00

31 lines
727 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "9.0.0244";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
hash = "sha256-l6fLM6+tc1Wy1mjNPa/s73GKhhGBLz3OXUJgJN1wuxY=";
};
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; [ das_j equirosa ];
platforms = platforms.unix;
};
}