Skip to content

Commit c9450f4

Browse files
committed
fix(macos): disable mc-franka on macos (missing RT build things, sudo, etc)
1 parent f26e098 commit c9450f4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

flake.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
#
6161
# As always, individual packages can be overridden using flakoboros
6262
mc-rtc-superbuild =
63-
{ pkgs, ... }:
63+
{ pkgs, lib, stdenv, ... }:
6464
{
6565
enable = true;
6666
project.pname = "";
@@ -89,8 +89,9 @@
8989
"minimal"
9090
"panda-controller-example-minimal"
9191
];
92+
# FIXME: disable mc-franka, it does not build on macos
9293
runtime = {
93-
apps = [
94+
apps = lib.optionals (!stdenv.hostPlatform.isDarwin) [
9495
pkgs.mc-franka
9596
];
9697
};

0 commit comments

Comments
 (0)