diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-22T21·57+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-22T21·57+0100 |
commit | 31b2baca9c5ae8670dc54dde68513d40284b4dbd (patch) | |
tree | d8850aeb0bfb84aefdd4ed30a67427bb810388c4 /third_party/default.nix | |
parent | 56261f1c0813744b1a07f4a5a7e7a995a7e9fbcf (diff) |
feat(third_party): Switch to LLVM 10 by default r/815
Diffstat (limited to 'third_party/default.nix')
-rw-r--r-- | third_party/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index aca3430c9dc0..79a92d84dc6f 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -73,7 +73,6 @@ let kontemplate lib libredirect - llvmPackages luajit luatex makeFontsConf @@ -166,6 +165,9 @@ in exposed // { ffmpeg = nixpkgs.ffmpeg-full; }; + # Use LLVM 10 + llvmPackages = nixpkgs.llvmPackages_10; + # Make NixOS available nixos = import "${stableNixpkgsSrc}/nixos"; } |