wow
This commit is contained in:
parent
d42448a9d0
commit
6fef06ae70
67 changed files with 436 additions and 1 deletions
15
shell.nix
Normal file
15
shell.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue