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

31 lines
733 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
rec {
2020-08-31 09:52:14 +00:00
version = "8.2.1522";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
2020-08-31 09:52:14 +00:00
sha256 = "0dah3392cq06pagik5y7kcq61mslqvfsh7vqldv3kvhr5ilqb8qy";
};
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";
2020-03-03 23:12:12 +00:00
homepage = "http://www.vim.org";
license = licenses.vim;
2019-12-16 17:55:04 +00:00
maintainers = with maintainers; [ lovek323 equirosa ];
platforms = platforms.unix;
};
}