zeus.ugent.be/shell.nix
2021-03-21 12:09:39 +01:00

12 lines
303 B
Nix

let
pkgs = import <nixpkgs> {};
in with pkgs; mkShell {
nativeBuildInputs = [
ruby bundler libxml2 nodejs yarn cacert git glibcLocales
pandoc (texlive.combine { inherit (texlive) scheme-basic xetex unicode-math enumitem booktabs; })
];
shellHook = ''
export LANG=en_US.UTF-8
'';
}