fix: disable ast-grep tests on darwin (sandbox locale issue)

This commit is contained in:
2026-03-09 11:26:24 +01:00
parent 393c38f82f
commit 564e6e37fd

View File

@@ -4,6 +4,12 @@
(final: prev: {
himalaya = inputs.himalaya.packages.${prev.stdenv.hostPlatform.system}.default;
})
# ast-grep (test_scan_invalid_rule_id fails on darwin in sandbox)
(final: prev: {
ast-grep = prev.ast-grep.overrideAttrs (old: {
doCheck = false;
});
})
# jj-ryu
(final: prev: let
naersk-lib = prev.callPackage inputs.naersk {};