We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56472bd commit 79105e5Copy full SHA for 79105e5
flake.nix
@@ -27,8 +27,24 @@
27
inherit inputs;
28
inherit (inputs) nixpkgs;
29
};
30
- in inputs.haumea.lib // {
31
- inherit blockTypes collect;
32
- inherit (inputs.paisano) grow growOn pick harvest winnow;
33
- };
+ # compat wrapper for humea.lib.load
+ inherit (inputs) haumea;
+ load = {
+ inputs,
34
+ cell,
35
+ ...
36
+ } @ args:
37
+ with builtins;
38
+ haumea.lib.load (removeAttrs args ["cell" "inputs"]
39
+ // {
40
+ # `self` in paisano refers to `inputs.self.sourceInfo` 😕
41
+ # but is disallowed in haumea
42
+ inputs = removeAttrs (inputs // {inherit cell;}) ["self"];
43
+ });
44
+ in
45
+ haumea.lib
46
47
+ inherit blockTypes collect load;
48
+ inherit (inputs.paisano) grow growOn pick harvest winnow;
49
+ };
50
}
0 commit comments