1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

vim: no longer need to use clangStdenv on darwin

This commit is contained in:
John Wiegley 2014-05-31 20:19:02 +00:00
parent 0392293f2e
commit c0e26205f3

View file

@ -9570,12 +9570,7 @@ let
flup = pythonPackages.flup;
};
vim = callPackage ../applications/editors/vim {
# for Objective-C compilation
stdenv = if stdenv.isDarwin
then clangStdenv
else stdenv;
};
vim = callPackage ../applications/editors/vim { };
vimWrapper = wrapVim vim;