about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
Diffstat (limited to 'third_party')
-rw-r--r--third_party/cpp/googleapis/default.nix2
-rw-r--r--third_party/default.nix2
-rw-r--r--third_party/nix/default.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/third_party/cpp/googleapis/default.nix b/third_party/cpp/googleapis/default.nix
index 76a1f7ed6e..bb1737bb92 100644
--- a/third_party/cpp/googleapis/default.nix
+++ b/third_party/cpp/googleapis/default.nix
@@ -4,7 +4,7 @@
 
 let
   inherit (pkgs) fetchFromGitHub;
-  stdenv = with pkgs; overrideCC pkgs.stdenv clang_9;
+  stdenv = with pkgs; overrideCC pkgs.stdenv clang_10;
 in stdenv.mkDerivation {
   name = "googleapis-cpp";
   src = ./.;
diff --git a/third_party/default.nix b/third_party/default.nix
index 0ef3d15d09..2280af9b8f 100644
--- a/third_party/default.nix
+++ b/third_party/default.nix
@@ -35,7 +35,7 @@ let
       cgit
       clang-tools
       clangStdenv
-      clang_9
+      clang_10
       cmake
       coreutils
       cudatoolkit
diff --git a/third_party/nix/default.nix b/third_party/nix/default.nix
index d7a85bb612..c21a6d00c9 100644
--- a/third_party/nix/default.nix
+++ b/third_party/nix/default.nix
@@ -1,7 +1,7 @@
 { pkgs ? (import <nixpkgs> {}).third_party, ... }:
 
 let
-  stdenv = with pkgs; overrideCC clangStdenv clang_9;
+  stdenv = with pkgs; overrideCC clangStdenv clang_10;
 
   aws-s3-cpp = pkgs.aws-sdk-cpp.override {
     apis = ["s3" "transfer"];