blob: 9da1d5d071a10bead2c28b81ddf6bace3f27c171 (
plain)
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
|
{
description = "Aria Shrimpton dissertation";
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
tex = pkgs.texlive.combine {
inherit
(pkgs.texlive)
scheme-small
microtype
sectsty
printlen
psnfss
helvetic
courier
biblatex
latex-bin
latexmk
;
};
in rec {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.just # command runner
tex # latex environment
pkgs.biber # bibliography backend
pkgs.racket-minimal
pkgs.z3
];
};
packages.${system} = {
default = pkgs.stdenvNoCC.mkDerivation rec {
name = "thesis";
src = ./thesis;
buildInputs = [pkgs.coreutils tex pkgs.biber];
phases = ["unpackPhase" "buildPhase" "installPhase"];
buildPhase = ''
export PATH="${pkgs.lib.makeBinPath buildInputs}";
mkdir -p .cache/texmf-var
env TEXMFHOME=.cache TEXMFVAR=.cache/texmf-var \
latexmk -interaction=nonstopmode -bibtex -pdf \
main.tex
'';
installPhase = ''
mkdir -p $out
cp main.pdf $out/
'';
};
};
};
}
|