From 6e1e2d5aba433751d0d46a55f90ffbff63871046 Mon Sep 17 00:00:00 2001 From: LluĂ­s Batlle i Rossell Date: Wed, 13 May 2009 10:21:29 +0000 Subject: Adding muparser and meshlab. svn path=/nixpkgs/trunk/; revision=15585 --- pkgs/applications/graphics/meshlab/default.nix | 38 ++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pkgs/applications/graphics/meshlab/default.nix (limited to 'pkgs/applications/graphics/meshlab/default.nix') diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix new file mode 100644 index 000000000000..10b48b063256 --- /dev/null +++ b/pkgs/applications/graphics/meshlab/default.nix @@ -0,0 +1,38 @@ +{stdenv, fetchurl, qt, bzip2}: + +stdenv.mkDerivation { + name = "meshlab-1.2.0"; + + src = fetchurl { + url = mirror://sourceforge/meshlab/MeshLabSrc_v120.tgz; + sha256 = "0iidp2pzwq96v8zbm8gc67wi1f41anpkncp17ajkv1rrh653nila"; + }; + + + setSourceRoot = "sourceRoot=`pwd`/meshlab/src"; + + buildPhase = '' + pushd external + qmake -recursive external.pro + make + popd + qmake -recursive meshlabv12.pro + make + ''; + + installPhase = '' + ensureDir $out/opt/meshlab $out/bin + pushd meshlab + cp -R meshlab plugins shaders* textures images $out/opt/meshlab + popd + ln -s $out/opt/meshlab/meshlab $out/bin/meshlab + ''; + + buildInputs = [ qt bzip2 ]; + + meta = { + description = "System for the processing and editing of unstructured 3D triangular meshes"; + homepage = http://meshlab.sourceforge.net/; + license = "GPLv2+"; + }; +} -- cgit 1.4.1