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