We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc58f0 commit 6b95b82Copy full SHA for 6b95b82
tests/test-sources/plugins/by-name/none-ls/default.nix
@@ -105,18 +105,10 @@
105
106
sources =
107
let
108
- disabled =
109
- [
110
- # Added 2025-03-18
111
- # Dependency python3Packages.click-option-group is broken
112
- # TODO: re-enable when the fix lands in nixpkgs-unstable
113
- # https://github.com/NixOS/nixpkgs/pull/389579
114
- "semgrep"
115
- ]
116
- ++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
117
- # Not available on aarch64-linux
118
- "smlfmt"
119
- ];
+ disabled = lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
+ # Not available on aarch64-linux
+ "smlfmt"
+ ];
120
in
121
# Enable every none-ls source that has an option
122
lib.mapAttrs (
0 commit comments