From 3c7d4c74be3490589867fb99fed2c93d00172ca8 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 23 May 2021 13:33:59 +0200 Subject: chore(3p/overlays): Remove LLVM11 bump from overlay * This was mostly for //third_party/nix and its dependencies which now have been set to use llvmPackages_11 manually. * For //users/grfn/achilles we also manually select the newer LLVM version. * //tools/cheddar doesn't seem to need llvm anymore. * //third_party/buzz also compiles with clang 7.1.0 * replace clang-tools everywhere with new attribute clang-tools_11 For the future we may want to have something similar again, but it may not be necessary to invest too much time into it: nixpkgs is set to upgrade their default llvmPackages to LLVM 11 as well at some point in the near future. Co-Authored-By: sterni Change-Id: Id83868dbc476a6c776b59518b856c933f30ea79d Reviewed-on: https://cl.tvl.fyi/c/depot/+/3135 Tested-by: BuildkiteCI Reviewed-by: tazjin Reviewed-by: sterni Reviewed-by: grfn --- users/grfn/achilles/default.nix | 12 ++++++++---- users/grfn/system/home/modules/development.nix | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'users/grfn') diff --git a/users/grfn/achilles/default.nix b/users/grfn/achilles/default.nix index 4ad71455d4..5245049d4a 100644 --- a/users/grfn/achilles/default.nix +++ b/users/grfn/achilles/default.nix @@ -1,20 +1,24 @@ { depot, pkgs, ... }: +let + llvmPackages = pkgs.llvmPackages_11; +in + depot.third_party.naersk.buildPackage { src = ./.; - buildInputs = with pkgs; [ - clang_11 + buildInputs = [ + llvmPackages.clang llvmPackages.llvm llvmPackages.bintools - llvmPackages.clang llvmPackages.libclang.lib + ] ++ (with pkgs; [ zlib ncurses libxml2 libffi pkgconfig - ]; + ]); doCheck = true; } diff --git a/users/grfn/system/home/modules/development.nix b/users/grfn/system/home/modules/development.nix index 932c03d408..43bb7a79a2 100644 --- a/users/grfn/system/home/modules/development.nix +++ b/users/grfn/system/home/modules/development.nix @@ -55,7 +55,7 @@ with lib; gdb lldb hyperfine - clang-tools + clang-tools_11 (rr.overrideAttrs (_: rec { version = "f25671d094edac8059cec56b98d7f10f2c740697"; src = pkgs.fetchFromGitHub { -- cgit 1.4.1