mirror of
https://github.com/hmemcpy/milewski-ctfp-pdf.git
synced 2024-11-26 12:44:57 +03:00
d3ddb331dc
* Support building on TexLive 2018 * Adding missing packages
51 lines
955 B
Nix
51 lines
955 B
Nix
# nix-shell --pure shell.nix --command 'cd src; make'
|
|
{ pkgs ? import <nixpkgs> {} }: with pkgs;
|
|
|
|
mkShell {
|
|
FONTCONFIG_FILE = makeFontsConf { fontDirectories = [ inconsolata-lgc libertine libertinus ]; };
|
|
buildInputs = [
|
|
(texlive.combine {
|
|
inherit (texlive)
|
|
fvextra
|
|
framed
|
|
newtx
|
|
nowidow
|
|
emptypage
|
|
wrapfig
|
|
subfigure
|
|
adjustbox
|
|
collectbox
|
|
tikz-cd
|
|
imakeidx
|
|
idxlayout
|
|
titlesec
|
|
subfiles
|
|
lettrine
|
|
upquote
|
|
libertine
|
|
mweights
|
|
fontaxes
|
|
mdframed
|
|
needspace
|
|
xifthen
|
|
currfile
|
|
noindentafter
|
|
ifmtarg
|
|
scheme-medium
|
|
listings
|
|
minted
|
|
microtype
|
|
babel
|
|
todonotes
|
|
chngcntr
|
|
ifplatform
|
|
xstring
|
|
minifp
|
|
enumitem;
|
|
})
|
|
gnumake
|
|
pythonPackages.pygments
|
|
which
|
|
];
|
|
}
|