Nixpkgs Architecture Team | 232 Members | |
| https://github.com/nixpkgs-architecture, weekly public meetings on Wednesday 15:00-16:00 UTC at https://meet.jit.si/nixpkgs-architecture | 54 Servers |
| Sender | Message | Time |
|---|---|---|
| 11 Jul 2023 | ||
| Actually merging itself, and having that in the type system isn't that big of a deal IMO. Problems arise if you expect to merge values with inter-dependencies. Like, Nixpkgs config requires merging as there are multiple places where the configuration can be but, but they are all independent from each other so it's a lot simpler | 17:18:26 | |
| priority is pretty simple to fit in, Priority { prio :: Int, value :: a } is a monoid by taking the value with the higher priority | 17:18:36 | |
| Oh, what you're saying is "default values are just merging with priority"? | 17:19:54 | |
| But how about default values without otherwise merging functionality | 17:20:11 | |
| * But how about default values without otherwise merging functionality? | 17:20:13 | |
| so mkForce just becomes the function mkForce val = Priority { prio = highestPriority, value = val } | 17:20:20 | |
| actually not sure you want to use monoids here, since having an identity element might not be the default you want in most cases? | 17:22:40 | |
| so monoid sans empty element might be a better choice | 17:22:53 | |
| piegames: I guess default values could just be values with very low priority? | 17:23:59 | |
| idk | 17:24:01 | |
| I mean if you think about it nixos configs are very similar to CSS in that regard | 17:24:34 | |
| mkForce is !important | 17:24:38 | |
| The thing I don't like priority for, is that now you have to track which values are actual values, and which values are priority annotation wrapping a value. | 17:25:18 | |
| thus is the tyranny of structured typesystems | 17:26:30 | |
| *structural | 17:26:38 | |
| 20:43:38 | ||
| 12 Jul 2023 | ||
| Ah, funny to see that a lot of the subjects touched upon here are questions we also had to think about for Nickel as well. Would be interesting to share some of the ideas and insights on both side. A couple points:
| 07:22:24 | |
| Profpatsch: would you care elaborating on that? CUE seems to take the entirely opposed approach | 07:22:44 | |
| * Profpatsch: would you mind elaborating on that please? CUE seems to take the entirely opposed approach | 07:24:43 | |
| * Ah, funny to see that a lot of the subjects touched upon here are questions we also had to think about for Nickel as well. Would be interesting to share some of the ideas and insights on both sides. A couple points:
| 07:33:02 | |
| 07:46:09 | ||
| yannham: Cue suffers from the same slowness problems as the nixos module system afaik | 08:41:28 | |
| The problem is unscoped merging, aka if you want to figure out whether something exists, you have to potentially search through every module definition | 08:42:25 | |
| Priority is a pretty horrible monoid, because you cannot use laziness to short-circuit | 08:42:43 | |
| compared to e.g. Last | 08:42:54 | |
| (there could always be something with higher priority that the evaluator hasn’t seen yet, so you have to look at absolutely everything) | 08:43:33 | |
| I don’t know how nickel solves this? | 08:43:57 | |
Almost the same story for SOS, the intent was to not remove mkDerivation but delay it to be executed at the very end of the fix-point, thus making packages just ordinary attribute sets available through prev/super, which can be overwritten by using Nix's update operator within Nixpkgs' overlays. | 10:00:03 | |
In reply to @nbp:mozilla.orgHow does this deal with e.g. Python packages? I like the idea but again I don't think this is going to work well until we've foxed our builders | 10:16:18 | |
| Unrelated, but one change I’d like to see is having features be a special attribute set, and each feature ideally carries the information which dependencies it needs. | 10:58:16 | |