about summary refs log tree commit diff
path: root/pkgs/applications/graphics/ovito
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-01-06 13:09:12 -0500
committerWill Cohen <willcohen@users.noreply.github.com>2022-01-06 13:09:12 -0500
commit93c3b17f751e1240ab23aefee44c92f1ead1904c (patch)
treed5eadfa4703a838139c7ff75e9028dfacb91840c /pkgs/applications/graphics/ovito
parent88d7e0ff334177f5a5494ed2616dae195adf6136 (diff)
ovito: mark as broken on darwin
Diffstat (limited to 'pkgs/applications/graphics/ovito')
-rw-r--r--pkgs/applications/graphics/ovito/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/ovito/default.nix b/pkgs/applications/graphics/ovito/default.nix
index f0dc5f2b363e9..a9cef1e140900 100644
--- a/pkgs/applications/graphics/ovito/default.nix
+++ b/pkgs/applications/graphics/ovito/default.nix
@@ -1,4 +1,4 @@
-{ mkDerivation, lib, fetchFromGitLab, cmake
+{ mkDerivation, lib, stdenv, fetchFromGitLab, cmake
 , boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, ffmpeg, python
 , qtbase, qtsvg, qttools, qscintilla }:
 
@@ -37,5 +37,6 @@ mkDerivation rec {
     homepage = "https://ovito.org";
     license = with licenses;  [ gpl3Only mit ];
     maintainers = with maintainers; [ twhitehead ];
+    broken = stdenv.isDarwin; # clang-11: error: no such file or directory: '$-DOVITO_COPYRIGHT_NOTICE=...
   };
 }