testenv: use mkShellNoCC

This shell does no longer need to download a c compiler, which speed up
things quite a bit.
This commit is contained in:
Jörg Thalheim 2022-06-01 08:17:39 +02:00
parent 748988f4b9
commit 078b023769
No known key found for this signature in database

View file

@ -1,5 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
pkgs.mkShellNoCC {
nativeBuildInputs = [ pkgs.hello ];
shellHook = ''
echo "Executing shellHook."