-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
incompatible with pending Nix changes #77
Comments
okay, so with the follow diff: diff --git a/src/grow.nix b/src/grow.nix
index 1116a3b..a4a5726 100644
--- a/src/grow.nix
+++ b/src/grow.nix
@@ -86,7 +86,7 @@
# Validations ...
Organelles = validate.Organelles organelles;
Systems = validate.Systems systems;
- Cells = l.mapAttrsToList (validate.Cell cellsFrom Organelles) (l.readDir cellsFrom);
+ Cells = l.mapAttrsToList (validate.Cell cellsFrom Organelles) (l.traceVal (l.readDir cellsFrom));
# Helpers ...
accumulate =
It seems the type of
Probably because of the new virtual filesystem. I would imagine an unknown value in a builtin function is undesirable and should be worked out before the change is merged, so maybe it won't affect us by that time? |
@nrdxp Is this issue still warranted or should we revive mitigation efforts in any way? |
Well the lazy-trees branch still hasn't been merged: NixOS/nix#6530 I guess we'll have to wait and see what this looks like after it is merged, as it is a pretty fast moving target. |
|
|
changes yes, but maybe not breakages, any more? I'd like the idea to start thinking in forward-compatibility, here. |
Yeah but as I said, it breaks a lot of stuff so it's kinda hard to test and pretty intimidating to start to fix. Feel free anytime though 😅 |
Looks like the lazy-trees branch is finally out of draft, so it may be just the time to give it another shot. |
These nix changes are pending and pending ⌛ 😄 |
Running with NixOS/nix#6530, which is currently planned for the next point release, I am getting the following eval error pretty much everywhere in a work project:
Not sure the root cause yet. Will post back when I know more
The text was updated successfully, but these errors were encountered: