parent
4e8e63f278
commit
254c2fb8d0
83
pkgs/applications/graphics/cloudcompare/default.nix
Normal file
83
pkgs/applications/graphics/cloudcompare/default.nix
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, dxflib
|
||||||
|
, eigen
|
||||||
|
, flann
|
||||||
|
, gdal
|
||||||
|
, LASzip
|
||||||
|
, libLAS
|
||||||
|
, pdal
|
||||||
|
, qtbase
|
||||||
|
, qtsvg
|
||||||
|
, qttools
|
||||||
|
, tbb
|
||||||
|
, xercesc
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cloudcompare";
|
||||||
|
version = "2.11.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CloudCompare";
|
||||||
|
repo = "CloudCompare";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "02ahhhivgb9k1aygw1m35wdvhaizag1r98mb0r6zzrs5p4y64wlb";
|
||||||
|
# As of writing includes (https://github.com/CloudCompare/CloudCompare/blob/a1c589c006fc325e8b560c77340809b9c7e7247a/.gitmodules):
|
||||||
|
# * libE57Format
|
||||||
|
# * PoissonRecon
|
||||||
|
# In > 2.11 it will also contain
|
||||||
|
# * CCCoreLib
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
eigen # header-only
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
dxflib
|
||||||
|
flann
|
||||||
|
gdal
|
||||||
|
LASzip
|
||||||
|
libLAS
|
||||||
|
pdal
|
||||||
|
qtbase
|
||||||
|
qtsvg
|
||||||
|
qttools
|
||||||
|
tbb
|
||||||
|
xercesc
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
# TODO: This will become -DCCCORELIB_USE_TBB=ON in > 2.11.0, see
|
||||||
|
# https://github.com/CloudCompare/CloudCompare/commit/f5a0c9fd788da26450f3fa488b2cf0e4a08d255f
|
||||||
|
"-DCOMPILE_CC_CORE_LIB_WITH_TBB=ON"
|
||||||
|
"-DOPTION_USE_DXF_LIB=ON"
|
||||||
|
"-DOPTION_USE_GDAL=ON"
|
||||||
|
"-DOPTION_USE_SHAPE_LIB=ON"
|
||||||
|
|
||||||
|
"-DPLUGIN_GL_QEDL=ON"
|
||||||
|
"-DPLUGIN_GL_QSSAO=ON"
|
||||||
|
"-DPLUGIN_IO_QADDITIONAL=ON"
|
||||||
|
"-DPLUGIN_IO_QCORE=ON"
|
||||||
|
"-DPLUGIN_IO_QCSV_MATRIX=ON"
|
||||||
|
"-DPLUGIN_IO_QE57=ON"
|
||||||
|
"-DPLUGIN_IO_QFBX=OFF" # Autodesk FBX SDK is gratis+proprietary; not packaged in nixpkgs
|
||||||
|
"-DPLUGIN_IO_QPDAL=ON" # required for .las/.laz support
|
||||||
|
"-DPLUGIN_IO_QPHOTOSCAN=ON"
|
||||||
|
"-DPLUGIN_IO_QRDB=OFF" # Riegl rdblib is proprietary; not packaged in nixpkgs
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "3D point cloud and mesh processing software";
|
||||||
|
homepage = "https://cloudcompare.org";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ nh2 ];
|
||||||
|
platforms = with platforms; linux; # only tested here; might work on others
|
||||||
|
};
|
||||||
|
}
|
@ -10249,6 +10249,8 @@ in
|
|||||||
|
|
||||||
cloud-nuke = callPackage ../development/tools/cloud-nuke { };
|
cloud-nuke = callPackage ../development/tools/cloud-nuke { };
|
||||||
|
|
||||||
|
cloudcompare = libsForQt5.callPackage ../applications/graphics/cloudcompare {};
|
||||||
|
|
||||||
cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli { };
|
cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli { };
|
||||||
|
|
||||||
coan = callPackage ../development/tools/analysis/coan { };
|
coan = callPackage ../development/tools/analysis/coan { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user