tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
meshlab: use system vcg
Nikolay Amiantov
9 years ago
2a7a4ec0
7b08f65f
+2
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
meshlab
default.nix
+2
-4
pkgs/applications/graphics/meshlab/default.nix
···
1
1
-
{stdenv, fetchurl, qt4, bzip2, lib3ds, levmar, muparser, unzip}:
1
1
+
{ stdenv, fetchurl, qt4, bzip2, lib3ds, levmar, muparser, unzip, vcg }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "meshlab-1.3.3";
···
16
16
17
17
buildPhase = ''
18
18
mkdir -p "$out/include"
19
19
-
cp -r vcglib "$out/include"
20
20
-
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$out/include/vcglib"
21
19
export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS"
22
20
cd meshlab/src
23
21
pushd external
···
38
36
39
37
sourceRoot = ".";
40
38
41
41
-
buildInputs = [ qt4 unzip ];
39
39
+
buildInputs = [ qt4 unzip vcg ];
42
40
43
41
meta = {
44
42
description = "System for the processing and editing of unstructured 3D triangular meshes";