Files
clan-core/pkgs/ui/flake-module.nix
Johannes Kirschbauer 5a39865622 add api generator
2023-08-25 13:40:52 +02:00

19 lines
444 B
Nix

{ self, ... }:
{
perSystem = { pkgs, system, ... }:
let
inherit (self.inputs) floco;
base = pkgs.callPackage ./default.nix { inherit floco system; clanPkgs = self.packages.${system}; };
in
{
packages = {
ui = base.pkg.global;
};
devShells.ui = pkgs.callPackage ./shell.nix {
inherit pkgs;
inherit (base) fmod pkg;
clanPkgs = self.packages.${system};
};
};
}