2017-12-04 14:59:25 +01:00
|
|
|
{ stdenv, fetchFromGitHub, mesa_glu, qtbase, qtscript, qtxmlpatterns }:
|
2009-05-13 12:21:29 +02:00
|
|
|
|
2017-12-04 14:59:25 +01:00
|
|
|
let
|
|
|
|
meshlabRev = "5700f5474c8f90696a8925e2a209a0a8ab506662";
|
|
|
|
vcglibRev = "a8e87662b63ee9f4ded5d4699b28d74183040803";
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "meshlab-2016.12";
|
2009-05-13 12:21:29 +02:00
|
|
|
|
2017-12-04 14:59:25 +01:00
|
|
|
srcs =
|
|
|
|
[
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "cnr-isti-vclab";
|
|
|
|
repo = "meshlab";
|
|
|
|
rev = meshlabRev;
|
|
|
|
sha256 = "0srrp7zhi86dsg4zsx1615gr26barz38zdl8s03zq6vm1dgzl3cc";
|
|
|
|
name = "meshlab-${meshlabRev}";
|
|
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "cnr-isti-vclab";
|
|
|
|
repo = "vcglib";
|
|
|
|
rev = vcglibRev;
|
|
|
|
sha256 = "0jh8jc8rn7rci8qr3q03q574fk2hsc3rllysck41j8xkr3rmxz2f";
|
|
|
|
name = "vcglib-${vcglibRev}";
|
|
|
|
})
|
|
|
|
];
|
2009-05-13 12:21:29 +02:00
|
|
|
|
2017-12-04 14:59:25 +01:00
|
|
|
sourceRoot = "meshlab-${meshlabRev}";
|
2009-05-13 12:21:29 +02:00
|
|
|
|
2017-12-04 14:59:25 +01:00
|
|
|
patches = [ ./fix-2016.02.patch ];
|
2014-04-20 11:30:06 +02:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2017-12-04 14:59:25 +01:00
|
|
|
enableParallelBuilding = true;
|
2016-02-12 13:50:38 +01:00
|
|
|
|
2010-07-07 17:10:05 +02:00
|
|
|
buildPhase = ''
|
2017-12-04 14:59:25 +01:00
|
|
|
# MeshLab has ../vcglib hardcoded everywhere, so move the source dir
|
|
|
|
mv ../vcglib-${vcglibRev} ../vcglib
|
|
|
|
|
|
|
|
cd src
|
2010-07-07 17:10:05 +02:00
|
|
|
export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS"
|
2017-12-04 14:59:25 +01:00
|
|
|
|
2009-05-13 12:21:29 +02:00
|
|
|
pushd external
|
2010-07-07 17:10:05 +02:00
|
|
|
qmake -recursive external.pro
|
2017-12-04 14:59:25 +01:00
|
|
|
buildPhase
|
2009-05-13 12:21:29 +02:00
|
|
|
popd
|
2012-08-30 08:18:24 +02:00
|
|
|
qmake -recursive meshlab_full.pro
|
2017-12-04 14:59:25 +01:00
|
|
|
buildPhase
|
2009-05-13 12:21:29 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-12-04 14:59:25 +01:00
|
|
|
mkdir -p $out/opt/meshlab $out/bin
|
|
|
|
cp -Rv distrib/* $out/opt/meshlab
|
2009-05-13 12:21:29 +02:00
|
|
|
ln -s $out/opt/meshlab/meshlab $out/bin/meshlab
|
2017-12-04 14:59:25 +01:00
|
|
|
ln -s $out/opt/meshlab/meshlabserver $out/bin/meshlabserver
|
2009-05-13 12:21:29 +02:00
|
|
|
'';
|
|
|
|
|
2017-12-04 14:59:25 +01:00
|
|
|
buildInputs = [ mesa_glu qtbase qtscript qtxmlpatterns ];
|
2009-05-13 12:21:29 +02:00
|
|
|
|
|
|
|
meta = {
|
2017-12-04 14:59:25 +01:00
|
|
|
description = "A system for processing and editing 3D triangular meshes.";
|
|
|
|
homepage = http://www.meshlab.net/;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2010-01-21 10:49:10 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2009-05-13 12:21:29 +02:00
|
|
|
};
|
|
|
|
}
|