36 lines
848 B
Nix
36 lines
848 B
Nix
{ config ? { }
|
|
, pkgs ? import <nixpkgs> { }
|
|
, nix2lua ? import <nix2lua>
|
|
}:
|
|
|
|
|
|
let nix2lua' = nix2lua; in
|
|
let
|
|
inherit (pkgs.lib) evalModules filter concatMapStringsSep showWarnings;
|
|
|
|
nix2lua = nix2lua'.lib;
|
|
|
|
lib = import ./lib {
|
|
inherit (pkgs) lib;
|
|
inherit nix2lua;
|
|
};
|
|
|
|
allModules = import ./module-list.nix { inherit pkgs; };
|
|
|
|
rawModule = evalModules {
|
|
modules = [ config ] ++ allModules;
|
|
specialArgs = { inherit pkgs lib; };
|
|
};
|
|
|
|
failedAssertions = map (x: x.message) (filter (x: !x.assertion) rawModule.config.assertions);
|
|
|
|
module =
|
|
if failedAssertions != [ ]
|
|
then throw "\nFailed assertions:\n${concatMapStringsSep "\n" (x: "- ${x}") failedAssertions}"
|
|
else showWarnings rawModule.config.warnings rawModule;
|
|
in
|
|
{
|
|
inherit (module.config) build;
|
|
inherit (module) config options;
|
|
inherit pkgs;
|
|
}
|