Merge pull request #446 from ZeusWPI/nixos-shell
Add shell.nix for easy development with nix
This commit is contained in:
commit
68822bf789
1 changed files with 11 additions and 0 deletions
11
shell.nix
Normal file
11
shell.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue