diff options
author | sterni <sternenseemann@systemli.org> | 2022-02-12T18·35+0100 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2022-02-13T09·15+0000 |
commit | 235eda6649daf21825bec425eebd68da834c40ef (patch) | |
tree | a35ec109d6afbdea610236a10860f3453571771b /nix | |
parent | c351aa5af4782f1f7a2dcbd09c4482e6ec884360 (diff) |
chore(3p/sources): Bump channels & overlays r/3812
* //nix/buildLisp: re-enable CCL, as the crash has been fixed upstream, although it is unclear what exactly caused / fixed it. * //ops/whitby: the kitty build broke upstream, so we can't install the terminfo on whitby for a bit. Change-Id: I5710acbe837fbc936e334b2e81f9cf00ed6ae280 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5274 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'nix')
-rw-r--r-- | nix/buildLisp/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index 13c215a467d1..a8168334a77b 100644 --- a/nix/buildLisp/default.nix +++ b/nix/buildLisp/default.nix @@ -154,8 +154,7 @@ let let implementation = old.implementation or defaultImplementation; brokenOn = old.brokenOn or [ ]; - # TODO(sterni): figure out why ccl stopped working and re-add the targets for it - targets = lib.subtractLists (brokenOn ++ [ "ccl" implementation.name ]) + targets = lib.subtractLists (brokenOn ++ [ implementation.name ]) (builtins.attrNames impls); in { |