nixpkgs/pkgs/applications/graphics/meshlab/default.nix

67 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, libGLU, qtbase, qtscript, qtxmlpatterns }:
2017-12-04 13:59:25 +00:00
let
meshlabRev = "5700f5474c8f90696a8925e2a209a0a8ab506662";
vcglibRev = "a8e87662b63ee9f4ded5d4699b28d74183040803";
in stdenv.mkDerivation {
name = "meshlab-2016.12";
2017-12-04 13:59:25 +00: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}";
})
];
2017-12-04 13:59:25 +00:00
sourceRoot = "meshlab-${meshlabRev}";
2017-12-04 13:59:25 +00:00
patches = [ ./fix-2016.02.patch ];
hardeningDisable = [ "format" ];
2017-12-04 13:59:25 +00:00
enableParallelBuilding = true;
2016-02-12 12:50:38 +00:00
buildPhase = ''
2017-12-04 13:59:25 +00:00
# MeshLab has ../vcglib hardcoded everywhere, so move the source dir
mv ../vcglib-${vcglibRev} ../vcglib
cd src
export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS"
2017-12-04 13:59:25 +00:00
pushd external
qmake -recursive external.pro
2017-12-04 13:59:25 +00:00
buildPhase
popd
qmake -recursive meshlab_full.pro
2017-12-04 13:59:25 +00:00
buildPhase
'';
installPhase = ''
2017-12-04 13:59:25 +00:00
mkdir -p $out/opt/meshlab $out/bin
cp -Rv distrib/* $out/opt/meshlab
ln -s $out/opt/meshlab/meshlab $out/bin/meshlab
2017-12-04 13:59:25 +00:00
ln -s $out/opt/meshlab/meshlabserver $out/bin/meshlabserver
'';
buildInputs = [ libGLU qtbase qtscript qtxmlpatterns ];
meta = {
2017-12-04 13:59:25 +00:00
description = "A system for processing and editing 3D triangular meshes.";
homepage = http://www.meshlab.net/;
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
2018-04-10 23:15:18 +00:00
broken = true; # 2018-04-11
};
}