| 10 Jun 2026 |
Scrumplex | * So even if we revert the patch now, it will bite us back once 8.21.0 is generally available | 11:19:37 |
raitobezarius | We are aware of critical bugs in curl even in the current release | 11:20:03 |
Scrumplex | * I tested curl 8.21.0-r2 against lix and see the same hang | 11:20:42 |
raitobezarius | We will try to figure out things with curl upstream but we are also considering dropping curl of our dependency chain due to the quality issues in their releases | 11:20:47 |
Scrumplex | * I tested curl 8.21.0-rc2 against lix and see the same hang | 11:20:53 |
raitobezarius | I recommend dropping the bug in the meantime | 11:20:55 |
Emil Thorsøe | at least for nheko on my system the patch is kind of mandatory | 11:21:29 |
raitobezarius | We can use another curl attribute then | 11:21:47 |
raitobezarius | But I think the bugfix is probably wrong for any sophisticated user of H2 | 11:22:06 |
juliusfreudenberger | I guess, this was the last one for 25.11? | 11:54:29 |
Vladimír Čunát | Yes. | 11:54:47 |
Gaétan Lepage | staging-next is next then? | 14:25:10 |
hexa | yes | 14:26:41 |
hexa | in ~185k builds | 14:26:54 |
hexa | so 7-10 days | 14:27:03 |
hexa | Redacted or Malformed Event | 14:27:10 |
Gaétan Lepage | Cool, thanks! | 14:58:16 |
hexa | python3Minimal on staging fails with find: ‘nuke-refs’: No such file or directory. | 22:46:14 |
hexa | what are the chances? https://github.com/nixos/nixpkgs/commit/4df33765698ad9b6ff28e2eb958f3971e23d1065 | 22:46:51 |
hexa |
This pr was made before AI policy was merged, I'll add commit trails tomorrow
| 22:47:10 |
hexa | awesome. | 22:47:13 |
dish [Fox/It/She] | In reply to @hexa:lossy.network
This pr was made before AI policy was merged, I'll add commit trails tomorrow
and then it was merged before said trailers were added >.> | 22:58:36 |
hexa | on the commit before 4df337 python3Minimal builds | 23:10:58 |
hexa | I'm trying to find out if it broke on the commit | 23:11:06 |
| 11 Jun 2026 |
hexa | hm no, builds on that commit | 00:06:59 |
hexa | bisect it is | 00:10:57 |
hexa | 94c6cc8ea1eeccbd47b1de266b781c7bdd2df433 is the first bad commit
commit 94c6cc8ea1eeccbd47b1de266b781c7bdd2df433 (HEAD)
Author: Ethan Carter Edwards <ethan@ethancedwards.com>
Date: Mon Jun 8 11:37:32 2026 -0700
replaceVarsWith: properly set pname, version
Link: https://github.com/NixOS/nixpkgs/issues/485742
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
pkgs/build-support/replace-vars/replace-vars-with.nix | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
| 07:59:33 |
hexa | 👀 | 07:59:51 |
hexa | diff --git a/pkgs/build-support/replace-vars/replace-vars-with.nix b/pkgs/build-support/replace-vars/replace-vars-with.nix
index abbb9a1cc1a0..60e48f841a19 100644
--- a/pkgs/build-support/replace-vars/replace-vars-with.nix
+++ b/pkgs/build-support/replace-vars/replace-vars-with.nix
@@ -122,7 +122,8 @@ in
stdenvNoCC.mkDerivation (
{
- name = baseNameOf src;
+ pname = optionalAttrs.pname or optionalAttrs.name or (baseNameOf src);
+ version = "26.11pre-git";
}
// optionalAttrs
// forcedAttrs
| 08:04:39 |
hexa | that's quite the minimal change | 08:04:50 |