tests/plugins/dbee: disable test on aarch64-linux (duckdb broken)

This commit is contained in:
Gaetan Lepage 2025-07-25 17:06:09 +02:00 committed by Gaétan Lepage
parent 16e3c175ec
commit 8a7d5f548b

View file

@ -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;
};