fake.modules transposition for aspect-oriented Dendritic Nix. with cross-aspect dependencies. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/
dendrix.oeiuwq.com/Dendritic.html
dendritic
nix
aspect
oriented
1{
2 inputs,
3 targetMod,
4 ...
5}:
6{
7
8 flake.tests."test provides default" =
9 let
10 flake =
11 inputs.flake-parts.lib.mkFlake
12 {
13 inputs.self = [ ];
14 moduleLocation = builtins.toString ./.;
15 }
16 {
17 systems = [ ];
18 imports = [
19 targetMod
20 inputs.flake-parts.flakeModules.modules
21 ];
22 };
23 expr = flake.modules;
24 expected = { };
25 in
26 {
27 inherit expr expected;
28 };
29}