| 10 Jun 2026 |
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 |
hexa | reverting in https://github.com/NixOS/nixpkgs/pull/530700 | 10:59:57 |
hexa | quickly verifiying that I'm not full of shit | 11:02:12 |
Vladimír Čunát | Verifying that stdenv builds again? | 11:23:15 |
hexa | python3Minimal | 11:23:32 |
hexa | so going beyond stdenv | 11:23:42 |
hexa | I think | 11:23:45 |
Vladimír Čunát | https://hydra.nixos.org/job/nixpkgs/staging/stdenv.x86_64-linux | 11:24:06 |
Vladimír Čunát | I don't think so. | 11:24:13 |
Vladimír Čunát | Well, here it's visible: https://hydra.nixos.org/build/331508082 | 11:24:47 |
Vladimír Čunát | Anyway, I started a build, but gcc will take a while even with 24 cores. | 11:25:31 |
Vladimír Čunát | * Anyway, I started a build, but gcc will take a while even with 24 cores dedicated to this. | 11:25:39 |
hexa | oh, python3Minimal is part of stdenv? | 11:27:00 |