summary refs log tree commit diff
path: root/pkgs/applications/graphics/meshlab
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-02-13 17:45:27 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-02-13 17:45:27 +0100
commit4c4e3f0ada5f876dd79703a7beafc01b24e7839d (patch)
tree5161e5c2fea22d8700d832c85e89c4e7daf058ab /pkgs/applications/graphics/meshlab
parent17faab35c34859e4426873aacaa8d8d7dd795043 (diff)
downloadnixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar.gz
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar.bz2
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar.lz
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar.xz
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.tar.zst
nixpkgs-4c4e3f0ada5f876dd79703a7beafc01b24e7839d.zip
meshlab: fix forgotten qt47
Diffstat (limited to 'pkgs/applications/graphics/meshlab')
-rw-r--r--pkgs/applications/graphics/meshlab/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix
index a811d759f7e..7151fc7af5c 100644
--- a/pkgs/applications/graphics/meshlab/default.nix
+++ b/pkgs/applications/graphics/meshlab/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, qt, bzip2, lib3ds, levmar, muparser, unzip}:
+{stdenv, fetchurl, qt4, bzip2, lib3ds, levmar, muparser, unzip}:
 
 stdenv.mkDerivation rec {
   name = "meshlab-1.3.2";
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
 
   sourceRoot = ".";
 
-  buildInputs = [ qt unzip ];
+  buildInputs = [ qt4 unzip ];
 
   meta = {
     description = "System for the processing and editing of unstructured 3D triangular meshes";