1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00

clang_multi: fix incorrect leftover use of "callPackages"

Addresses problem identified by @orivej:
https://github.com/NixOS/nixpkgs/pull/32215#issuecomment-350600045
This commit is contained in:
Will Dietz 2017-12-11 12:13:50 -06:00
parent 35ccdb8632
commit 62cd4f1389

View file

@ -5597,7 +5597,7 @@ with pkgs;
wrapClangMulti = clang:
if system == "x86_64-linux" then
callPackages ../development/compilers/llvm/multi.nix {
callPackage ../development/compilers/llvm/multi.nix {
inherit clang;
gcc32 = pkgsi686Linux.gcc;
gcc64 = pkgs.gcc;