1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
inputs = {
haumea = {
url = "github:nix-community/haumea/v0.2.2";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:nix-community/nixpkgs.lib";
};
outputs = { self, haumea, nixpkgs }: {
checks = haumea.lib.loadEvalTests {
src = ./tests;
inputs = {
inherit (nixpkgs) lib;
foo = self.lib;
};
};
lib = haumea.lib.load {
src = ./src;
inputs = {
inherit (nixpkgs) lib;
};
};
};
}