add api generator

This commit is contained in:
Johannes Kirschbauer
2023-08-25 13:40:52 +02:00
parent fb1376b23d
commit 5a39865622
13 changed files with 9247 additions and 20 deletions

View File

@@ -3,7 +3,7 @@
perSystem = { pkgs, system, ... }:
let
inherit (self.inputs) floco;
base = pkgs.callPackage ./default.nix { inherit floco system; };
base = pkgs.callPackage ./default.nix { inherit floco system; clanPkgs = self.packages.${system}; };
in
{
packages = {
@@ -12,6 +12,7 @@
devShells.ui = pkgs.callPackage ./shell.nix {
inherit pkgs;
inherit (base) fmod pkg;
clanPkgs = self.packages.${system};
};
};
}