summary refs log tree commit diff
path: root/pkgs/applications/graphics/cloudcompare/default.nix
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-04-27 15:53:40 -0400
committerWill Cohen <willcohen@users.noreply.github.com>2022-04-29 16:08:44 -0400
commitaed4d163f6668719201f6e4b881dcb3d00172f48 (patch)
tree37cb5f1faad56f5798c08220ac2299426cc17dc8 /pkgs/applications/graphics/cloudcompare/default.nix
parentdd9b25ca2b83b94bde0414805e878a5defeaf842 (diff)
downloadnixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar.gz
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar.bz2
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar.lz
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar.xz
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.tar.zst
nixpkgs-aed4d163f6668719201f6e4b881dcb3d00172f48.zip
cloudcompare: mark as broken on linux
Diffstat (limited to 'pkgs/applications/graphics/cloudcompare/default.nix')
-rw-r--r--pkgs/applications/graphics/cloudcompare/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/cloudcompare/default.nix b/pkgs/applications/graphics/cloudcompare/default.nix
index 6a6820240f4..1d5556b6a8b 100644
--- a/pkgs/applications/graphics/cloudcompare/default.nix
+++ b/pkgs/applications/graphics/cloudcompare/default.nix
@@ -1,4 +1,5 @@
 { lib
+, stdenv
 , mkDerivation
 , fetchFromGitHub
 , fetchpatch
@@ -114,5 +115,6 @@ mkDerivation rec {
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ nh2 ];
     platforms = with platforms; linux; # only tested here; might work on others
+    broken = stdenv.isLinux; # plugins/core/IO/qPDALIO/CMakeFiles/QPDAL_IO_PLUGIN.dir/src/LASFilter.cpp.o] Error 1
   };
 }