Fix shell.nix for a pure shell

This commit is contained in:
Rien Maertens 2021-03-18 10:41:42 +01:00
parent 6d68652170
commit 3705235b24
No known key found for this signature in database
GPG key ID: AE66CE42F1AF9DEF

View file

@ -2,6 +2,9 @@ let
pkgs = import <nixpkgs> {};
in with pkgs; mkShell {
nativeBuildInputs = [
ruby bundler libxml2 nodejs yarn
ruby bundler libxml2 nodejs yarn cacert git glibcLocales
];
shellHook = ''
export LANG=en_US.UTF-8
'';
}