summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-06-25 15:50:32 +0200
committerGitHub <noreply@github.com>2021-06-25 15:50:32 +0200
commit2607ce8867a7af5e4affcadb82ef05e102e50f1b (patch)
tree6d651d4b7e3b9b8e90a0be610c70a7ad175bf37b /pkgs/top-level
parent57f5a1bcf24fdf8bd32b12c332e46b17205d8dc8 (diff)
parent9b3091a94cad63ebd0bd7aafbcfed7c133ef899d (diff)
downloadnixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar.gz
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar.bz2
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar.lz
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar.xz
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.tar.zst
nixpkgs-2607ce8867a7af5e4affcadb82ef05e102e50f1b.zip
Merge pull request #128065 from jonringer/stdenv-no-cc
mkShellNoCC: init
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f84f988b780..8f0e626eb98 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -622,6 +622,7 @@ in
     };
 
   mkShell = callPackage ../build-support/mkshell { };
+  mkShellNoCC = mkShell.override { stdenv = stdenvNoCC; };
 
   nixBufferBuilders = import ../build-support/emacs/buffer.nix { inherit (pkgs) lib writeText; inherit (emacs.pkgs) inherit-local; };