nixpkgs/pkgs/applications/misc/curaengine/default.nix

27 lines
713 B
Nix
Raw Normal View History

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