2017-02-25 23:05:04 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libarcus }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-26 12:12:14 +02:00
|
|
|
name = "curaengine-${version}";
|
2018-02-25 17:57:16 +01:00
|
|
|
version = "3.2.1";
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "CuraEngine";
|
|
|
|
rev = version;
|
2018-02-25 17:57:16 +01:00
|
|
|
sha256 = "1yqpp6qhixzni3ik11vbk5kcdrhlz2j4ylzmh8f6c86r4d73a0cp";
|
2014-09-04 17:04:53 +02:00
|
|
|
};
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ libarcus ];
|
2016-04-14 00:13:23 +02:00
|
|
|
|
2017-02-25 23:05:04 +01:00
|
|
|
enableParallelBuilding = true;
|
2014-03-25 23:17:17 +01:00
|
|
|
|
2014-09-04 17:04:53 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-02-25 23:05:04 +01:00
|
|
|
description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
|
2018-02-25 17:47:45 +01:00
|
|
|
homepage = https://github.com/Ultimaker/CuraEngine;
|
2014-09-04 17:04:53 +02:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.linux;
|
2017-02-25 23:05:04 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-09-04 17:04:53 +02:00
|
|
|
};
|
2014-03-25 23:17:17 +01:00
|
|
|
}
|