5b8455c338
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/vim/versions. These checks were done: - built on NixOS - ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim -h` got 0 exit code - ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim --help` got 0 exit code - ran `/nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655/bin/vim --version` and found version 8.0.1655 - found 8.0.1655 with grep in /nix/store/j6w96w36f0naab7fffqri1cmspaa3mnb-vim-8.0.1655 - directory tree listing: https://gist.github.com/b65f9cb4045c205c8c3ee68503c42596
30 lines
722 B
Nix
30 lines
722 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "8.0.1655";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vim";
|
|
repo = "vim";
|
|
rev = "v${version}";
|
|
sha256 = "1c6raqjaxgsjazn4l7wqg2cscd5i4bz9m2g2xhn9ba1injs7mps1";
|
|
};
|
|
|
|
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; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|