summary refs log tree commit diff homepage
path: root/shell.nix
blob: 7edb879ccbbbfe4c5c67a83b83c44418ba8afa0c (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 booktabs caption cases cite fancyhdr float glossaries
      hyperref pdflscape pdfpages pgf psnfss rsfs times tocloft vntex;
  }) ];
}