mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/claude-code: don't test on darwin
Currently failing on our CI, for some reason.
This commit is contained in:
parent
52c68b4da4
commit
5fed6b9363
2 changed files with 6 additions and 1 deletions
|
@ -9,6 +9,9 @@ let
|
||||||
disabledDeps = lib.optionals hostPlatform.isDarwin [
|
disabledDeps = lib.optionals hostPlatform.isDarwin [
|
||||||
# One of its dependencies is not available on darwin
|
# One of its dependencies is not available on darwin
|
||||||
"fontpreview"
|
"fontpreview"
|
||||||
|
|
||||||
|
# TODO: Failing to compile on darwin CI atm
|
||||||
|
"claude-code"
|
||||||
];
|
];
|
||||||
|
|
||||||
isDepEnabled =
|
isDepEnabled =
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{
|
{ pkgs, ... }:
|
||||||
|
# TODO: Failing to compile on darwin CI atm
|
||||||
|
pkgs.lib.optionalAttrs (!pkgs.stdenv.isDarwin) {
|
||||||
empty = {
|
empty = {
|
||||||
plugins.claude-code.enable = true;
|
plugins.claude-code.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue