mirror of
https://github.com/vale981/boon
synced 2025-03-04 09:01:39 -05:00
14 lines
452 B
Nix
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;
|
|
})
|
|
];
|
|
}
|