-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
112 lines (109 loc) · 3.14 KB
/
flake.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
description = "actus-spec";
inputs = {
# We use nixpkgs-unstable instead of nixos-23.05 to get a more
# recent version of typst: 0.8 instead of 0.4
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixpkgs-unstable";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
typstPackages.url = "github:typst/packages";
typstPackages.flake = false;
typstnix.url = "github:NorfairKing/typst.nix";
};
outputs =
{ self
, nixpkgs
, pre-commit-hooks
, typstPackages
, typstnix
}:
let
system = "x86_64-linux";
overlay = final: _:
let
specDocument = final.makeTypstDocument {
name = "actus-spec.pdf";
main = "main.typ";
src = ./spec;
};
in
{
actusSpec = final.linkFarm "actus-spec" [
{ name = "actus-spec.pdf"; path = specDocument; }
{ name = "test-data"; path = ./spec/test-data; }
];
actusSpecPresentation = final.makeTypstDocument {
name = "actus-spec-presentation.pdf";
main = "presentation.typ";
src = ./presentation;
packagesRepo = typstPackages;
typstDependencies = [
{
name = "polylux";
version = "0.3.1";
}
{
name = "diagraph";
version = "0.2.0";
}
];
};
};
pkgs = import nixpkgs {
inherit system;
overlays = [
typstnix.overlays.${system}
overlay
];
};
in
{
overlays.${system} = overlay;
packages.${system} = {
default = pkgs.actusSpec;
spec = pkgs.actusSpec;
presentation = pkgs.actusSpecPresentation;
};
checks.${system} = {
spec = self.packages.${system}.spec;
presentation = self.packages.${system}.presentation;
shell = self.devShells.${system}.default;
pre-commit = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixpkgs-fmt.enable = true;
deadnix.enable = true;
jsonfmt = {
enable = true;
entry = "${pkgs.jsonfmt}/bin/jsonfmt -w";
types = [ "file" ];
files = "\\.(json)$";
};
build = {
enable = true;
entry = "${pkgs.writeShellScript "compile pre-commit" ''
nix build .#spec
cp result spec-draft.pdf
chmod 764 spec-draft.pdf
nix build .#presentation
cp result presentation-draft.pdf
chmod 764 presentation-draft.pdf
''}";
};
};
};
};
devShells.${system}.default = pkgs.mkShell {
name = "actus-spec-shell";
buildInputs = (with pkgs; [
typst
jsonfmt
]) ++ (with pre-commit-hooks.packages.${system};
[
nixpkgs-fmt
deadnix
typst-fmt
]);
shellHook = self.checks.${system}.pre-commit.shellHook;
};
};
}