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:
parent
35ccdb8632
commit
62cd4f1389
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue