mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
tests/none-ls: disable broken semgrep
https://github.com/NixOS/nixpkgs/pull/391003#issuecomment-2733948423
This commit is contained in:
parent
c15e93c157
commit
122375e764
1 changed files with 12 additions and 4 deletions
|
@ -105,10 +105,18 @@
|
||||||
|
|
||||||
sources =
|
sources =
|
||||||
let
|
let
|
||||||
disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
disabled =
|
||||||
# Not available on aarch64-linux
|
[
|
||||||
"smlfmt"
|
# Added 2025-03-18
|
||||||
];
|
# Dependency python3Packages.click-option-group is broken
|
||||||
|
# TODO: re-enable when the fix lands in nixpkgs-unstable
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/389579
|
||||||
|
"semgrep"
|
||||||
|
]
|
||||||
|
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||||
|
# Not available on aarch64-linux
|
||||||
|
"smlfmt"
|
||||||
|
];
|
||||||
in
|
in
|
||||||
# Enable every none-ls source that has an option
|
# Enable every none-ls source that has an option
|
||||||
lib.mapAttrs (
|
lib.mapAttrs (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue