Files
clan-core/pkgs/ui/flake-module.nix
2023-08-05 11:42:48 +02:00

18 lines
364 B
Nix

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