mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-28 14:45:26 +02:00
tests/plugins/dbee: disable test on aarch64-linux (duckdb broken)
This commit is contained in:
parent
16e3c175ec
commit
8a7d5f548b
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
{ lib, pkgs, ... }:
|
||||
let
|
||||
inherit (pkgs.stdenv) hostPlatform;
|
||||
in
|
||||
# TODO: 2025-07-25 duckdb is broken on aarch64-linux
|
||||
lib.optionalAttrs (!(hostPlatform.isLinux && hostPlatform.isAarch64)) {
|
||||
empty = {
|
||||
plugins.dbee.enable = true;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue