workspace/shell.nix
2026-04-18 22:25:36 +09:00

15 lines
No EOL
283 B
Nix

{ pkgs ? import <nixpkgs> {} }:
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
'';
}