plugins/claude-code: don't test on darwin

Currently failing on our CI, for some reason.
This commit is contained in:
Austin Horstman 2025-05-07 23:03:23 -05:00 committed by Gaetan Lepage
parent 52c68b4da4
commit 5fed6b9363
2 changed files with 6 additions and 1 deletions

View file

@ -9,6 +9,9 @@ let
disabledDeps = lib.optionals hostPlatform.isDarwin [
# One of its dependencies is not available on darwin
"fontpreview"
# TODO: Failing to compile on darwin CI atm
"claude-code"
];
isDepEnabled =

View file

@ -1,4 +1,6 @@
{
{ pkgs, ... }:
# TODO: Failing to compile on darwin CI atm
pkgs.lib.optionalAttrs (!pkgs.stdenv.isDarwin) {
empty = {
plugins.claude-code.enable = true;
};