summaryrefslogtreecommitdiff
path: root/shenvs/tex.nix
blob: 2ba0670e68b823e92916bc74a5c6899aa88d38ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pkgs: {
  paths = with pkgs; [
    biber
    (texlive.combine {
      inherit (texlive)
        scheme-medium
        biblatex
        biblatex-ieee
        csquotes
        enumitem;
    })
  ];
}