diff --git a/pkgs/default.nix b/pkgs/default.nix index 2727bd0be774fb8616b801b857338d6b16315d82..9b0693166d8862e78696df41322cc31806f786fe 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -45,9 +45,8 @@ in rec { #Intel compilers intel = with pkgs; rec { - inherit utils; - icc = callPackage intel/icc { inherit compiler_path; }; - mkl = callPackage intel/mkl { inherit compiler_path; }; + icc = callPackage intel/icc { inherit compiler_path utils; }; + mkl = callPackage intel/mkl { inherit compiler_path utils; }; WrappedICC = (import ../patches/cc-wrapper { inherit stdenv binutils coreutils ; libc = glibc;