boon/latex.nix
2016-11-15 21:35:36 +01:00

14 lines
452 B
Nix

with (import <nixpkgs> {});
stdenv.mkDerivation {
name = "docsEnv";
buildInputs = [ (texlive.combine {
inherit (texlive)
varwidth
lm
xargs
logreq
scheme-small wrapfig marvosym wasysym wasy cm-super unicode-math filehook lm-math capt-of
xstring ucharcat;
})
];
}