aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: e18ff0347132dab44993e2310a368a2ddf111b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "latex-env";
  env = buildEnv { name = name; paths = buildInputs; };

  buildInputs = let
    texlive-custom = texlive.combine {
      inherit (texlive) scheme-small collection-langgerman latexmk
      kpfonts
      titlesec
      listings
      wrapfig
      enumitem
      pgfplots
      bbm
      bbm-macros
      ;
    };
  in [
    gnumake
    texlive-custom
  ];

  shellHook = ''
    export NIX_SHELL_NAME="${name}"
  '';
}