| 29 Feb 2024 |
| Jonas Chevalier joined the room. | 14:56:35 |
| 1 Mar 2024 |
| tomberek set a profile picture. | 15:20:36 |
| 2 Mar 2024 |
| @dooy:matrix.org left the room. | 11:27:53 |
| Qyriad joined the room. | 19:34:26 |
| 5 Mar 2024 |
infinisil | @room Meeting now (meeting link, meeting notes. We didn't really reach consensus last time, but I do finally think that we can call this the final meeting. | 14:00:40 |
nbp | Robert Hensing (roberth): Thanks for opening #273815 , what you suggest about using the update operator (//) reminds me of an old proposal named S.O.S. ;) | 14:19:00 |
tomberek | I'm not available this week. | 14:19:44 |
nbp | I think the mkDerivation application (calling with it) should be moved out of the fix-point if we want to keep use the update operator or any derivative of it. | 14:19:52 |
nbp | Thus one would set builder = stdenv.mkDerivation; recipe = { /* mkDerivation argument */ }; and a final phase will go after the fix-point to apply the builder to it argument. | 14:21:20 |
nbp | The same can be considered for migrating callPackage / mkScope resolution. | 14:22:08 |
| Dominic Mills joined the room. | 14:22:19 |
nbp | but we might need an update operator which works across functions, which it currently does not. | 14:22:33 |
cab404 | hmm, still can't add https://calendar.google.com/calendar/u/0/embed?src=b9o52fobqjak8oq8lfkhg3t0qg@group.calendar.google.com&ctz=Europe/Zurich as a calendar | 15:06:24 |
cab404 | Ohh, found it https://calendar.google.com/calendar/ical/b9o52fobqjak8oq8lfkhg3t0qg%40group.calendar.google.com/public/basic.ics | 15:09:31 |
Robert Hensing (roberth) | In reply to @nbp:mozilla.org Thus one would set builder = stdenv.mkDerivation; recipe = { /* mkDerivation argument */ }; and a final phase will go after the fix-point to apply the builder to it argument. Where builder and recipe are attributes of the overridable fixpoint, I suppose? With something like lib.encapsulate, that would be
lib.encapsulate (this: {
builder = stdenv.mkDerivation;
recipe = { name = "hello"; ..... };
public = this.builder this.recipe;
})
| 16:41:02 |
Robert Hensing (roberth) | I'm not sure about the names, as a derivation builder is also the process that runs as the derivation, and recipe is a bit vague, but I suppose naming isn't the primary concern | 16:42:03 |