mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
devShell: increase priority of clang-tools
Before we would get the unwrapped version of clang-tools from clang itself, which doesn't quite work.
This commit is contained in:
parent
8105307f0f
commit
2b7642632e
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@
|
||||||
# TODO: Remove the darwin check once
|
# TODO: Remove the darwin check once
|
||||||
# https://github.com/NixOS/nixpkgs/pull/291814 is available
|
# https://github.com/NixOS/nixpkgs/pull/291814 is available
|
||||||
++ lib.optional (stdenv.cc.isClang && !stdenv.buildPlatform.isDarwin) pkgs.buildPackages.bear
|
++ lib.optional (stdenv.cc.isClang && !stdenv.buildPlatform.isDarwin) pkgs.buildPackages.bear
|
||||||
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform) pkgs.buildPackages.clang-tools;
|
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform) (lib.hiPrio pkgs.buildPackages.clang-tools);
|
||||||
|
|
||||||
buildInputs = attrs.buildInputs or []
|
buildInputs = attrs.buildInputs or []
|
||||||
++ [
|
++ [
|
||||||
|
|
Loading…
Reference in a new issue