vim: add vim_darwin package for macOS (#108109)

master
Gurjeet Singh 2021-01-25 03:54:49 -08:00 committed by GitHub
parent cc75b0e3b5
commit 891f607d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -25231,6 +25231,20 @@ in
gtk3 = if stdenv.isDarwin then gtk3-x11 else gtk3;
});
vim-darwin = (vim_configurable.override {
config = {
vim = {
gui = "none";
darwin = true;
};
};
}).overrideAttrs (oldAttrs: rec {
pname = "vim-darwin";
meta = {
platforms = stdenv.lib.platforms.darwin;
};
});
vimacs = callPackage ../applications/editors/vim/vimacs.nix { };
vimv = callPackage ../tools/misc/vimv/default.nix { };