forked from Xe/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
277 lines (237 loc) · 7.83 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
naersk = {
url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
deno2nix = {
url = "github:Xe/deno2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
# Explicitly pulling from that version of nixpkgs to avoid font duplication.
iosevka.url = "github:Xe/iosevka";
typst.url = "github:typst/typst";
typst.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{ self, nixpkgs, flake-utils, naersk, deno2nix, iosevka, typst, ... }:
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-linux" ] (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ deno2nix.overlays.default typst.overlays.default ];
};
naersk-lib = naersk.lib."${system}";
src = ./.;
lib = pkgs.lib;
tex = with pkgs;
texlive.combine { inherit (texlive) scheme-medium bitter titlesec; };
fontsConf = pkgs.symlinkJoin {
name = "typst-fonts";
paths = [ "${self.packages.${system}.iosevka}/static/css/iosevka" ];
};
typstWithIosevka = pkgs.writeShellApplication {
name = "typst";
text = ''
${pkgs.typst-dev}/bin/typst \
--font-path ${fontsConf} \
"$@"
'';
runtimeInputs = [ ];
};
in rec {
packages = rec {
bin = naersk-lib.buildPackage {
pname = "xesite-bin";
root = src;
buildInputs = with pkgs; [
pkg-config
openssl
git
deno
nodePackages.uglify-js
];
};
config = pkgs.stdenv.mkDerivation {
pname = "xesite-config";
inherit (bin) version;
inherit src;
buildInputs = with pkgs; [ dhall dhallPackages.Prelude ];
phases = "installPhase";
installPhase = ''
mkdir -p $out
cp -rf ${pkgs.dhallPackages.Prelude}/.cache .cache
chmod -R u+w .cache
export XDG_CACHE_HOME=.cache
export DHALL_PRELUDE=${pkgs.dhallPackages.Prelude}/binary.dhall;
dhall resolve --file $src/config.dhall >> $out/config.dhall
'';
};
resumePDF = pkgs.stdenv.mkDerivation {
pname = "xesite-resume-pdf";
inherit (bin) version;
inherit src;
buildInputs = with pkgs; [
dhall-json
dhallPackages.Prelude
tex
pandoc
typst-dev
];
phases = "installPhase";
installPhase = ''
mkdir -p $out/static/resume
cp -rf ${pkgs.dhallPackages.Prelude}/.cache .cache
chmod -R u+w .cache
export XDG_CACHE_HOME=.cache
export DHALL_PRELUDE=${pkgs.dhallPackages.Prelude}/binary.dhall;
mkdir -p icons
cp -vrf $src/dhall/resume/* .
dhall-to-json --file $src/dhall/resume.dhall --output resume.json
typst compile --font-path ${fontsConf} resume.typ $out/static/resume/resume.pdf
'';
};
frontend = pkgs.stdenv.mkDerivation rec {
pname = "xesite-frontend";
inherit (bin) version;
dontUnpack = true;
src = ./src/frontend;
buildInputs = with pkgs; [ deno jq nodePackages.uglify-js ];
ESBUILD_BINARY_PATH = "${pkgs.esbuild}/bin/esbuild";
buildPhase = ''
export DENO_DIR="$(pwd)/.deno2nix"
mkdir -p $DENO_DIR
ln -s "${
pkgs.deno2nix.internal.mkDepsLink ./src/frontend/deno.lock
}" $(deno info --json | jq -r .modulesCache)
export MINIFY=yes
mkdir -p dist
export WRITE_TO=$(pwd)/dist
pushd $(pwd)
cd $src
deno run -A ./build.ts **/*.tsx
popd
'';
installPhase = ''
mkdir -p $out/static/xeact
cp -vrf dist/* $out/static/xeact
'';
};
iosevka = pkgs.stdenvNoCC.mkDerivation {
name = "xesite-iosevka";
buildInputs = with pkgs; [
python311Packages.brotli
python311Packages.fonttools
];
dontUnpack = true;
buildPhase = ''
mkdir -p out
${pkgs.unzip}/bin/unzip ${
self.inputs.iosevka.packages.${system}.default
}/ttf.zip
for ttf in ttf/*.ttf; do
cp $ttf out
name=`basename -s .ttf $ttf`
pyftsubset \
$ttf \
--output-file=out/"$name".woff2 \
--flavor=woff2 \
--layout-features=* \
--no-hinting \
--desubroutinize \
--unicodes="U+0000-0170,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD,U+00E8"
done
'';
installPhase = ''
mkdir -p $out/static/css/iosevka
cp out/* $out/static/css/iosevka
'';
};
static = pkgs.stdenv.mkDerivation {
pname = "xesite-static";
inherit (bin) version;
inherit src;
phases = "installPhase";
installPhase = ''
mkdir -p $out
cp -vrf $src/data $out
cp -vrf $src/static $out
'';
};
posts = pkgs.stdenv.mkDerivation {
pname = "xesite-posts";
inherit (bin) version;
inherit src;
phases = "installPhase";
installPhase = ''
mkdir -p $out
cp -vrf $src/blog $out
cp -vrf $src/gallery $out
cp -vrf $src/talks $out
'';
};
default = pkgs.symlinkJoin {
name = "xesite-${bin.version}";
paths = [ config posts static bin frontend resumePDF iosevka ];
};
docker = pkgs.dockerTools.buildLayeredImage {
name = "xena/xesite";
tag = bin.version;
contents = [ default ];
config = {
Cmd = [ "${bin}/bin/xesite" ];
WorkdingDir = "${default}";
};
};
};
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
# Rust
rustc
cargo
clippy
rust-analyzer
cargo-watch
cargo-license
rustfmt
hyperfine
# system dependencies
openssl
pkg-config
# dhall
dhall
dhall-json
dhall-lsp-server
tex
pandoc
typstWithIosevka
# frontend
deno
nodePackages.uglify-js
esbuild
zig
# tools
ispell
pandoc
python311Packages.fonttools
];
SITE_PREFIX = "devel.";
CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
ESBUILD_BINARY_PATH = "${pkgs.esbuild}/bin/esbuild";
RUST_LOG = "debug";
RUST_BACKTRACE = "1";
GITHUB_SHA = "devel";
DHALL_PRELUDE = "${pkgs.dhallPackages.Prelude}";
};
}) // {
nixosModules.default = import ./nix/xesite.nix self;
};
}