2018-10-02 23:15:42 +03:00
|
|
|
{ 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
|
2018-07-30 12:20:46 +03:00
|
|
|
libertine
|
|
|
|
mweights
|
|
|
|
fontaxes
|
2018-10-01 00:03:52 +03:00
|
|
|
mdframed
|
|
|
|
needspace
|
|
|
|
xifthen
|
2019-01-08 19:03:06 +03:00
|
|
|
ifnextok
|
2018-10-01 00:03:52 +03:00
|
|
|
currfile
|
|
|
|
noindentafter
|
|
|
|
ifmtarg
|
2018-07-15 11:53:19 +03:00
|
|
|
scheme-medium
|
|
|
|
listings
|
|
|
|
minted
|
|
|
|
microtype
|
|
|
|
babel
|
|
|
|
todonotes
|
|
|
|
chngcntr
|
|
|
|
ifplatform
|
|
|
|
xstring
|
2018-10-02 23:15:42 +03:00
|
|
|
minifp
|
2019-01-08 19:03:06 +03:00
|
|
|
titlecaps
|
2019-03-03 00:52:22 +03:00
|
|
|
enumitem
|
|
|
|
l3packages;
|
2018-07-15 11:53:19 +03:00
|
|
|
})
|
|
|
|
gnumake
|
|
|
|
pythonPackages.pygments
|
|
|
|
which
|
|
|
|
];
|
|
|
|
}
|