diff options
author | sterni <sternenseemann@systemli.org> | 2022-05-27T16·09+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-05-27T21·15+0000 |
commit | 0e705fedb04bffb45f02a6798cbaa1ab216d48e9 (patch) | |
tree | 1a58fca3d7ce816436a6b837c6a2a05f3570cf7d /nix | |
parent | b9342b5751ad9f2c2af0de7bab664d7136132866 (diff) |
chore(3p/sources): Bump channels & overlays r/4149
* //nix/buildLisp: disable CCL once again due to The Mysterious Runtime Bug™. * //users/tazjin/nixos: uninstall dmd which is broken in nixpkgs atm. Change-Id: I8dd2220af48a7e087584b6f50529fb8477e6a2fb Reviewed-on: https://cl.tvl.fyi/c/depot/+/5699 Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'nix')
-rw-r--r-- | nix/buildLisp/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index a8168334a77b..d9f9e70a37a9 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): https://github.com/Clozure/ccl/issues/405 + targets = lib.subtractLists (brokenOn ++ [ "ccl" implementation.name ]) (builtins.attrNames impls); in { |