mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-29 23:02:22 +03:00
18 lines
426 B
Nix
18 lines
426 B
Nix
{ self, ... }: {
|
|
perSystem = { self', pkgs, ... }:
|
|
let
|
|
inherit (self.inputs) floco;
|
|
base = pkgs.callPackage ./default.nix {
|
|
inherit floco;
|
|
nooglePkgs = self'.packages;
|
|
};
|
|
in {
|
|
packages = { ui = base.pkg.global; };
|
|
devShells.ui = pkgs.callPackage ./shell.nix {
|
|
inherit pkgs;
|
|
inherit (base) fmod pkg;
|
|
nooglePkgs = self'.packages;
|
|
};
|
|
};
|
|
}
|