mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 11:44:02 +00:00
fd1afd3359
> unable to copy file https://github.com/NixOS/nixpkgs/pull/224962#issuecomment-1498869534
32 lines
763 B
Nix
32 lines
763 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "9.0.1441";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vim";
|
|
repo = "vim";
|
|
rev = "v${version}";
|
|
hash = "sha256-tGWOIXx4gNMg0CB4ytUrj9bQLXw+4pl2lfgGR81+EJk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|