nixfiles/libs/core/lib/default.nix
Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

41 lines
1.7 KiB
Nix

{
checked ? false, # enable e.g. type-checks
intrinsics ? builtins, # intrinsic/builtin functions, variables, etc.
...
}:
Library "libcore"
{
inherit checked intrinsics;
}
{
ansi = ./ansi;
any = ./any;
bool = ./bool;
check = ./check;
context = ./context;
debug = ./debug;
derivation = ./derivation;
dictionary = ./dictionary;
environment = ./environment;
error = ./error;
expression = ./expression;
flake = ./flake;
float = ./float;
function = ./function;
indentation = ./indentation;
integer = ./integer;
lambda = ./lambda;
library = ./library;
list = ./list;
never = ./never;
null = ./null;
number = ./number;
path = ./path;
set = ./set;
string = ./string;
target = ./target;
time = ./time;
type = ./type;
version = ./version;
}