1
0
Fork 0
free-as-in-freedom-v2-ru/shell.nix

20 lines
341 B
Nix
Raw Normal View History

2019-08-28 00:43:41 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "free-as-in-freedom-v2-ru";
2019-08-28 01:15:31 +00:00
FONTCONFIG_FILE = pkgs.makeFontsConf {
fontDirectories = [ pkgs.liberation_ttf ];
};
2019-08-28 00:43:41 +00:00
buildInputs = with pkgs; [
git utillinux gnumake
texlive.combined.scheme-full rubber
pandoc
];
2019-08-28 01:15:31 +00:00
shellHook = ''
export LANG=C.UTF-8
'';
2019-08-28 00:43:41 +00:00
}