nixpkgs/pkgs/applications/editors/vim/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
732 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub }:
rec {
2022-06-29 10:12:36 +02:00
version = "9.0.0001";
src = fetchFromGitHub {
owner = "vim";
repo = "vim";
rev = "v${version}";
2022-06-29 10:12:36 +02:00
sha256 = "sha256-WnMm3q5Stn3s33rxQt76goURSa1Rq+jMVWYiS+uJTX0=";
};
enableParallelBuilding = true;
hardeningDisable = [ "fortify" ];
2016-11-07 16:29:20 +01:00
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";
2020-03-04 00:12:12 +01:00
homepage = "http://www.vim.org";
license = licenses.vim;
2019-12-16 18:55:04 +01:00
maintainers = with maintainers; [ lovek323 equirosa ];
platforms = platforms.unix;
};
}