summary refs log blame commit diff
path: root/pkgs/applications/editors/vim/common.nix
blob: 5be7078173e0eadd03494b95a6bb2b1ed85c277c (plain) (tree)
1
2
3
4
5
6
7
8
9

                         
                       




                         
                                                                    





                                   






                                                                 

                                                            
                                       
                               
                                                          


                                 
{ lib, fetchFromGitHub }:
rec {
  version = "8.2.1123";

  src = fetchFromGitHub {
    owner = "vim";
    repo = "vim";
    rev = "v${version}";
    sha256 = "01fgfm5pnmbq12z84d7g3x0iq5gj1irdyihx41c4r2bww55v5q0c";
  };

  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 equirosa ];
    platforms   = platforms.unix;
  };
}