tests/openscad: disable on darwin (broken dependency)

https://github.com/NixOS/nixpkgs/issues/411700
This commit is contained in:
Gaetan Lepage 2025-05-28 15:24:26 +02:00
parent 138dd37c1f
commit af5a0deadd

View file

@ -1,4 +1,8 @@
{
{ lib, pkgs, ... }:
# TODO: Added 2025-05-28
# `opencsg` fails to build on darwin
# https://github.com/NixOS/nixpkgs/issues/411700
lib.optionalAttrs (!pkgs.stdenv.hostPlatform.isDarwin) {
empty = {
plugins.openscad.enable = true;
};