tracks lexicons and how many times they appeared on the jetstream
1{
2 inputs.parts.url = "github:hercules-ci/flake-parts";
3 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
4
5 outputs = inp:
6 inp.parts.lib.mkFlake {inputs = inp;} {
7 systems = ["x86_64-linux"];
8 perSystem = {
9 pkgs,
10 config,
11 ...
12 }: {
13 packages.client-modules = pkgs.callPackage ./nix/client-modules.nix { };
14 packages.client = pkgs.callPackage ./nix/client.nix {
15 inherit (config.packages) client-modules;
16 };
17 packages.server = pkgs.callPackage ./nix/server.nix { };
18 };
19 };
20}