mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
31 lines
727 B
Nix
31 lines
727 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "9.0.0609";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vim";
|
|
repo = "vim";
|
|
rev = "v${version}";
|
|
hash = "sha256-UBj3pXY6rdekKnCX/V/4o8LLBMZkNs1U4Z4KuvisIYQ=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|