Merge pull request #446 from ZeusWPI/nixos-shell

Add shell.nix for easy development with nix
This commit is contained in:
lorin 2021-03-21 13:59:11 +01:00 committed by GitHub
commit 68822bf789
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
shell.nix Normal file
View 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
'';
}