From 0e45761853cbde42001f85e361f407fe9d1afdd6 Mon Sep 17 00:00:00 2001 From: sterni Date: Thu, 3 Feb 2022 19:45:06 +0100 Subject: chore(3p): Bump NixOS channels and emacs overlay to 2022-02-03 * //nix/buildLisp: This channel bump brought a bizarre regression in ccl, causing binaries to crash on thread clean up. This was likely caused by a glibc update in nixpkgs. We'll disable emitting CI targets for ccl until we can find out and fix what's going on. Change-Id: I37629f384fa99ec4ef96ce7127fa7569adecb687 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5207 Tested-by: BuildkiteCI Reviewed-by: tazjin Autosubmit: sterni --- nix/buildLisp/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nix/buildLisp') diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index f483e36765..a37ebcb87c 100644 --- a/nix/buildLisp/default.nix +++ b/nix/buildLisp/default.nix @@ -154,7 +154,8 @@ let let implementation = old.implementation or defaultImplementation; brokenOn = old.brokenOn or [ ]; - targets = lib.subtractLists (brokenOn ++ [ implementation.name ]) + # TODO(sterni): figure out why ccl stopped working and re-add the targets for it + targets = lib.subtractLists (brokenOn ++ [ "ccl" implementation.name ]) (builtins.attrNames impls); in { -- cgit 1.4.1