mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ed9e2bdc72
Signed-off-by: Henri Rosten <henri.rosten@unikie.com>
33 lines
788 B
Nix
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";
|
|
};
|
|
}
|