{ pkgs ? import {} }: pkgs.mkShell { packages = with pkgs; [ gcc gdb gnumake pkg-config icu ]; shellHook = '' # Work around .NET tools failing on systems where ICU cannot be resolved. export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 ''; }