zeus.ugent.be/shell.nix
2021-03-18 10:41:42 +01:00

11 lines
201 B
Nix

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