summary refs log tree commit diff homepage
path: root/shell.nix
blob: 434dbe1206bd4e79fa0a52fe34ffbc7ebf393923 (plain) (blame)
1
2
3
4
5
6
7
8
with import <nixpkgs> { };
mkShell {
  packages = [ (texlive.combine {
    inherit (texlive) scheme-basic algorithms algorithmicx amsmath
      babel-vietnamese caption cases cite fancyhdr float glossaries
      hyperref pdflscape pdfpages pgf psnfss rsfs times tocloft vntex;
  }) ];
}