summary refs log tree commit diff
path: root/pkgs/development/libraries/bullet
diff options
context:
space:
mode:
authorflurie <flurie@gmail.com>2021-11-18 21:34:32 -0500
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-11-18 22:10:29 -0800
commit181f7a78306944818a695035e0c22cf7f04c2888 (patch)
tree34f5a7c4d28fb03923cee43dcb54665158576682 /pkgs/development/libraries/bullet
parentc1f200061dd1418ec373886e1833f06bb2948e68 (diff)
downloadnixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar.gz
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar.bz2
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar.lz
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar.xz
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.tar.zst
nixpkgs-181f7a78306944818a695035e0c22cf7f04c2888.zip
bullet: fix build on darwin
Diffstat (limited to 'pkgs/development/libraries/bullet')
-rw-r--r--pkgs/development/libraries/bullet/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/development/libraries/bullet/default.nix b/pkgs/development/libraries/bullet/default.nix
index c7d26362f00..60ca2e9b18b 100644
--- a/pkgs/development/libraries/bullet/default.nix
+++ b/pkgs/development/libraries/bullet/default.nix
@@ -1,5 +1,12 @@
-{ lib, stdenv, fetchFromGitHub, cmake, libGLU, libGL, freeglut
-, Cocoa,  OpenGL
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, libGLU
+, libGL
+, freeglut
+, Cocoa
+, OpenGL
 }:
 
 stdenv.mkDerivation rec {
@@ -37,6 +44,7 @@ stdenv.mkDerivation rec {
     "-DCOCOA_LIBRARY=${Cocoa}/Library/Frameworks/Cocoa.framework"
     "-DBUILD_BULLET2_DEMOS=OFF"
     "-DBUILD_UNIT_TESTS=OFF"
+    "-DBUILD_BULLET_ROBOTICS_GUI_EXTRA=OFF"
   ];
 
   NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang