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