milewski-ctfp-pdf/shell.nix

53 lines
955 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }: with pkgs;
2018-07-15 11:53:19 +03:00
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
2019-01-08 19:03:06 +03:00
ifnextok
currfile
noindentafter
ifmtarg
2018-07-15 11:53:19 +03:00
scheme-medium
listings
minted
microtype
babel
todonotes
chngcntr
ifplatform
xstring
minifp
2019-01-08 19:03:06 +03:00
titlecaps
enumitem
l3packages;
2018-07-15 11:53:19 +03:00
})
gnumake
pythonPackages.pygments
which
];
}