vim: add vim_darwin package for macOS (#108109)
This commit is contained in:
parent
cc75b0e3b5
commit
891f607d53
1 changed files with 14 additions and 0 deletions
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue