masterthesis/shell.nix
2021-10-18 12:59:29 +02:00

47 lines
593 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
latexPackage = pkgs.texlive.combine {
inherit (texlive)
# base packages
scheme-small
acro
anyfontsize
biblatex
csquotes
dejavu
latexmk
# moderncv
# needspace
# fontawesome
fontspec
silence
translations
# wrapfig
# enumitem
# mathpazo
;
};
in
pkgs.mkShell {
buildInputs = [
latexPackage
pkgs.biber
# language correction
pkgs.languagetool
# detex script
pkgs.python
# make
pkgs.gnumake
# PDF viewer
pkgs.zathura
];
}