fix(flake): allow defaultPackage to evaluate#240
Conversation
by adding the missing (and in this case ignored) key/attribute-name argument to `lib.mapAttrs`.
roberth
left a comment
There was a problem hiding this comment.
It's a deprecated attribute, but thanks anyway!
|
Thanks for merging this!
Indeed -- kinda hard to miss given the warning message in its definition 😉 -- though I think a fuller and more salient description would be "meant-to-be-deprecated attribute whose definition broke the ability to run |
|
Oh, yeah, it does warn about that. It's also been deprecated for a long time now. Feel free to remove it 👍 |
Follow-up to hercules-ci#240.
by adding the missing (and in this case ignored) key/attribute-name argument to
lib.mapAttrs.Without this, trying to evaluate
defaultPackagetriggers the errorerror: value is a string while a set was expected.Discovered in running
nix flake checkwhile working on #92.Thanks!