+1
-4
cmd/genjwks/main.go
+1
-4
cmd/genjwks/main.go
+3
flake.nix
+3
flake.nix
···
123
123
};
124
124
repoguard = buildCmdPackage "repoguard";
125
125
keyfetch = buildCmdPackage "keyfetch";
126
+
genjwks = buildCmdPackage "genjwks";
126
127
};
127
128
packages = forAllSystems (system: {
128
129
inherit
···
133
134
knotserver-unwrapped
134
135
repoguard
135
136
keyfetch
137
+
genjwks
136
138
;
137
139
});
138
140
defaultPackage = forAllSystems (system: nixpkgsFor.${system}.appview);
···
162
164
cp -f ${inter-fonts-src}/web/InterVariable*.woff2 appview/pages/static/fonts/
163
165
cp -f ${inter-fonts-src}/web/InterDisplay*.woff2 appview/pages/static/fonts/
164
166
cp -f ${ibm-plex-mono-src}/fonts/complete/woff2/IBMPlexMono-Regular.woff2 appview/pages/static/fonts/
167
+
export TANGLED_OAUTH_JWKS="$(${pkgs.genjwks}/bin/genjwks)"
165
168
'';
166
169
env.CGO_ENABLED = 1;
167
170
};