1
0
Fork 0

Make shell.nix really reproducible

primary
dump_stack() 2019-08-28 01:15:31 +00:00
parent c7740fed78
commit cd783b7933
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 8 additions and 0 deletions

View File

@ -3,9 +3,17 @@
pkgs.mkShell {
name = "free-as-in-freedom-v2-ru";
FONTCONFIG_FILE = pkgs.makeFontsConf {
fontDirectories = [ pkgs.liberation_ttf ];
};
buildInputs = with pkgs; [
git utillinux gnumake
texlive.combined.scheme-full rubber
pandoc
];
shellHook = ''
export LANG=C.UTF-8
'';
}