nixpkgs/pkgs/applications/editors/vim/common.nix
Sascha Grunert 44073ec014
vim: 9.0.1275 -> 9.0.1369
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2023-03-02 16:18:04 +01:00

31 lines
727 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "9.0.1369";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
hash = "sha256-2YjWd07RMyiITnuI3/L0D9MiAxl2+9QVT1nrMBA9/dI=";
};
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;
};
}