milewski-ctfp-pdf/shell.nix
Igal Tabachnik d3ddb331dc
Texlive 2018 support (#150)
* Support building on TexLive 2018
* Adding missing packages
2018-10-02 23:15:42 +03:00

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
];
}