-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
64 lines (57 loc) · 1.06 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
pkgs,
config,
...
}: {
packages.doc = pkgs.stdenvNoCC.mkDerivation {
name = "miq-doc";
nativeBuildInputs = [
pkgs.just
(pkgs.python3.withPackages (p: [
p.pygments
]))
pkgs.inkscape
pkgs.graphviz-nox
(pkgs.texlive.combine {
inherit
(pkgs.texlive)
scheme-medium
biblatex
biber
svg
trimspaces
transparent
lipsum
acronym
bigfoot
xstring
minted
placeins
tabularray
ninecolors
xurl
pdfpages
setspace
;
})
pkgs.which
];
src = ./.;
buildPhase = ''
runHook preBuild
just clean build
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out
cp -vL out/index.pdf $out
runHook postInstall
'';
TEXMFHOME = "./cache";
TEXMFVAR = "./cache/var";
};
packages.doc-dev = config.packages.doc.overrideAttrs (_: {
src = null;
});
}