cloudcompare: Improve Qt wrapping.

As I learned in the review of #91627.
This commit is contained in:
Niklas Hambüchen 2020-06-27 23:50:36 +02:00
parent 32b95b2c70
commit 96776d5a2f

View File

@ -1,7 +1,7 @@
{ stdenv { lib
, mkDerivation
, fetchFromGitHub , fetchFromGitHub
, cmake , cmake
, wrapQtAppsHook
, dxflib , dxflib
, eigen , eigen
, flann , flann
@ -16,7 +16,7 @@
, xercesc , xercesc
}: }:
stdenv.mkDerivation rec { mkDerivation rec {
pname = "cloudcompare"; pname = "cloudcompare";
version = "2.11.0"; version = "2.11.0";
@ -36,7 +36,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
eigen # header-only eigen # header-only
wrapQtAppsHook
]; ];
buildInputs = [ buildInputs = [
@ -73,7 +72,7 @@ stdenv.mkDerivation rec {
"-DPLUGIN_IO_QRDB=OFF" # Riegl rdblib is proprietary; not packaged in nixpkgs "-DPLUGIN_IO_QRDB=OFF" # Riegl rdblib is proprietary; not packaged in nixpkgs
]; ];
meta = with stdenv.lib; { meta = with lib; {
description = "3D point cloud and mesh processing software"; description = "3D point cloud and mesh processing software";
homepage = "https://cloudcompare.org"; homepage = "https://cloudcompare.org";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;