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
|
|
|
}
|