dream2nix/lib/types/default.nix

31 lines
897 B
Nix
Raw Normal View History

2023-10-22 23:20:33 +03:00
{
lib,
dream2nix,
specialArgs,
...
}: let
t = lib.types;
in rec {
derivation = t.oneOf [t.str t.path t.package];
2023-10-23 00:36:24 +03:00
# A stricter submodule type that prevents derivations from being
2023-10-22 23:20:33 +03:00
# detected as modules by accident. (derivations are attrs as well as modules)
drvPart = let
type = t.submoduleWith {
modules = [dream2nix.modules.dream2nix.core];
inherit specialArgs;
};
in
type
// {
# Ensure that derivations are never detected as modules by accident.
check = val: type.check val && (val.type or null != "derivation");
};
# polymorphic type, that can either represent a derivation or a drv-part.
# The stricter`drvPart` type is needed to prevent derivations being
# classified as modules by accident.
# This is important because derivations cannot be merged with drv-parts.
drvPartOrPackage = t.either derivation drvPart;
}