22 lines
324 B
Nix
22 lines
324 B
Nix
{ pkgs, ... }:
|
|
{
|
|
static = true;
|
|
|
|
packages = with pkgs; [
|
|
biber
|
|
(texlive.combine {
|
|
inherit (texlive)
|
|
appendix
|
|
scheme-medium
|
|
biblatex
|
|
biblatex-ieee
|
|
cleveref
|
|
csquotes
|
|
enumitem
|
|
ieeetran
|
|
titlesec
|
|
titling
|
|
zref;
|
|
})
|
|
];
|
|
} |