milewski-ctfp-pdf/shell.nix
Igal Tabachnik fb7962437c
A whole lotta tweaks! (#184)
* Parameter tweaks
* Image tweaks
* Line tweaks
* Rewording to avoid overflow
* Snippets tweaks
* Removing the ‘final’ keyword to conserve space
* Adding syntax highlighting
2019-03-02 23:52:22 +02:00

53 lines
955 B
Nix

{ 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
ifnextok
currfile
noindentafter
ifmtarg
scheme-medium
listings
minted
microtype
babel
todonotes
chngcntr
ifplatform
xstring
minifp
titlecaps
enumitem
l3packages;
})
gnumake
pythonPackages.pygments
which
];
}