zeus.ugent.be/shell.nix

12 lines
303 B
Nix
Raw Normal View History

let
pkgs = import <nixpkgs> {};
in with pkgs; mkShell {
nativeBuildInputs = [
2021-03-18 09:41:42 +00:00
ruby bundler libxml2 nodejs yarn cacert git glibcLocales
2021-03-21 11:09:39 +00:00
pandoc (texlive.combine { inherit (texlive) scheme-basic xetex unicode-math enumitem booktabs; })
];
2021-03-18 09:41:42 +00:00
shellHook = ''
export LANG=en_US.UTF-8
'';
}