nixpkgs/pkgs/applications/editors/vim/common.nix

31 lines
731 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
rec {
2020-02-10 18:41:20 +00:00
version = "8.2.0227";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
2020-02-10 18:41:20 +00:00
sha256 = "1yi7l2yd214iv6i8pr52m272mlzps5v3h6xdgr1770xfz4y1yc0h";
};
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 "
'';
meta = with lib; {
description = "The most popular clone of the VI editor";
homepage = http://www.vim.org;
license = licenses.vim;
2019-12-16 17:55:04 +00:00
maintainers = with maintainers; [ lovek323 equirosa ];
platforms = platforms.unix;
};
}