2013-10-01 12:37:13 +02:00
|
|
|
{ stdenv, fetchurl, qt4, bison, flex, eigen, boost, mesa, glew, opencsg, cgal
|
2014-01-02 17:53:57 +01:00
|
|
|
, mpfr, gmp
|
|
|
|
}:
|
2012-01-26 20:39:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-10-01 12:37:13 +02:00
|
|
|
version = "2013.06";
|
2012-01-26 20:39:45 +01:00
|
|
|
name = "openscad-${version}";
|
2013-04-25 08:19:55 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://openscad.googlecode.com/files/${name}.src.tar.gz";
|
|
|
|
sha256 = "01r013l8zyfkgmqn05axh3rlfsjwd6j403w5ffl7nby4i2spiw1f";
|
|
|
|
};
|
2012-01-26 20:39:45 +01:00
|
|
|
|
2013-10-01 12:37:13 +02:00
|
|
|
buildInputs = [ qt4 bison flex eigen boost mesa glew opencsg cgal gmp mpfr ];
|
2012-01-26 20:39:45 +01:00
|
|
|
|
|
|
|
configurePhase = ''
|
2012-12-13 13:24:05 +01:00
|
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo ${eigen}/include/eigen*) "
|
2013-04-25 08:28:54 +02:00
|
|
|
qmake PREFIX="$out" VERSION=${version}
|
2012-01-26 20:39:45 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "3D parametric model compiler";
|
2013-04-25 08:20:49 +02:00
|
|
|
longDescription = ''
|
|
|
|
OpenSCAD is a software for creating solid 3D CAD objects. It is free
|
|
|
|
software and available for Linux/UNIX, MS Windows and Mac OS X.
|
|
|
|
|
|
|
|
Unlike most free software for creating 3D models (such as the famous
|
|
|
|
application Blender) it does not focus on the artistic aspects of 3D
|
|
|
|
modelling but instead on the CAD aspects. Thus it might be the
|
|
|
|
application you are looking for when you are planning to create 3D models of
|
|
|
|
machine parts but pretty sure is not what you are looking for when you are more
|
|
|
|
interested in creating computer-animated movies.
|
|
|
|
'';
|
2012-01-26 20:39:45 +01:00
|
|
|
homepage = "http://openscad.org/";
|
2013-04-25 08:20:49 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-10-01 12:37:13 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-01-26 20:39:45 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers;
|
2013-10-01 12:37:13 +02:00
|
|
|
[ bjornfor raskin the-kenny ];
|
2012-01-26 20:39:45 +01:00
|
|
|
};
|
|
|
|
}
|