forked from mirrors/nixpkgs
vim: clean up arguments list
This commit is contained in:
parent
27e4137630
commit
de0182ee59
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig
|
||||
|
||||
# apple frameworks
|
||||
, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private }:
|
||||
, Carbon, Cocoa }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vim-${version}";
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [ ncurses pkgconfig ]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreData CoreServices Cocoa Foundation libobjc ];
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
|
||||
nativeBuildInputs = [ gettext ];
|
||||
|
||||
configureFlags = [
|
||||
|
|
|
@ -21,7 +21,7 @@ with frameworks; with libs; {
|
|||
Automator = [];
|
||||
CFNetwork = [ CF ];
|
||||
CalendarStore = [];
|
||||
Cocoa = [ Foundation ];
|
||||
Cocoa = [ AppKit ];
|
||||
Collaboration = [];
|
||||
CoreAudio = [ CF IOKit ];
|
||||
CoreAudioKit = [ AudioUnit ];
|
||||
|
|
|
@ -13168,8 +13168,7 @@ let
|
|||
};
|
||||
|
||||
vim = callPackage ../applications/editors/vim {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData;
|
||||
inherit (darwin) libobjc cf-private;
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||
};
|
||||
|
||||
macvim = callPackage ../applications/editors/vim/macvim.nix { stdenv = clangStdenv; };
|
||||
|
|
Loading…
Reference in a new issue