| 27 Mar 2025 |
Philip Taron (UTC-8) | (Since I assume that adding Nix 2.27 doesn't at the same time drop 2.26, which would be madness.) | 21:49:32 |
Philip Taron (UTC-8) | * Yes -- what I mean is that all that code was checked in under pkgs/tools/package-management/nix/vendor/2_26/ -- so this is the version that figures out how to share it or copy it/ | 21:49:42 |
emily | I guess it should, since the Nix team only support the latest version and the version in Nixpkgs stable. | 21:52:48 |
emily | btw, there is a much more sensible packaging in https://github.com/NixOS/nixpkgs/pull/393509 but sadly I think it is not being pursued | 21:53:17 |
SomeoneSerge (back on matrix) |
What on earth does "output" without method or hash or path or anything at all mean?
"name": > "bootstrap-stage0-binutils-wrapper-",
"outputs": {
"out": {}
},
CC Martin Schwaighofer
| 21:56:21 |
emily | those are split outputs, no? | 22:12:07 |
emily | the Nixpkgs outputs = … | 22:12:21 |
| nishimara joined the room. | 22:21:49 |
John Ericson | deferred input-addressed | 22:34:13 |
John Ericson | i.e. it is an input-addressed that depends on content-addressed | 22:34:23 |
John Ericson | we're waiting to building the content-addressed before we can input-address | 22:34:44 |
John Ericson | this has the effect of doing an an end-run around hashDerivationModulo | 22:35:07 |
John Ericson | the thing we will end up using for input-addressing is the resolved derivation, with no inputSrcs | 22:35:22 |
John Ericson | * the thing we will end up using for input-addressing is the resolved derivation, with no inputDrvs only inputSrcs | 22:35:31 |
| 28 Mar 2025 |
fzakaria | if I have an ATerm drv file; how can I add it to my store ? | 01:59:00 |
fzakaria | (assuming "it's correct") | 01:59:05 |
fzakaria | oh nix-store --add but the name has to end in .drv | 02:14:24 |
Martin Schwaighofer | In reply to @Ericson2314:matrix.org the thing we will end up using for input-addressing is the resolved derivation, with no inputDrvs only inputSrcs Ok, I understand, thanks | 13:14:30 |
John Ericson | Mic92: btw if we could get diff3 enabled on mergify backports with committed conflicts, that would be great :) | 17:09:10 |
Mic92 | John Ericson: can't see an option just now. Maybe we can use some github action again in the future for backports | 17:33:26 |
John Ericson | Mic92: it's a not a huge deal at all | 17:34:05 |
John Ericson | not action is fine | 17:34:10 |
John Ericson | just thought I would let you know | 17:34:15 |
Mic92 | also with mergiraf support | 17:35:02 |
fzakaria | https://github.com/NixOS/nix/blob/master/src/libutil/hash.cc#L387
Can I do this from the CLI somehow ? compressHash | 23:30:22 |
puck | i wouldn't bother, it's a single xor :p | 23:31:00 |
fzakaria | well im trying to construct the hashes by hand | 23:33:25 |
fzakaria | not being able to construct things individually is kind of lame. | 23:33:41 |
puck | well, you need something to actually do the sha256summing too | 23:48:01 |
| 29 Mar 2025 |
fzakaria | sha256sum exists | 00:30:55 |