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 10:12:14 +00:00
name = "curaengine-${version}";
2017-10-21 01:14:52 +00:00
version = "3.0.3";
2014-03-25 22:17:17 +00:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "CuraEngine";
rev = version;
2017-10-21 01:14:52 +00:00
sha256 = "0x1ss3hppw6062rmmxh0dpnm5cg6r2mp01k0nxyw5riiljj59ydy";
2014-09-04 15:04:53 +00:00
};
2014-03-25 22:17:17 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ libarcus ];
2016-04-13 22:13:23 +00:00
enableParallelBuilding = true;
2014-03-25 22:17:17 +00:00
2014-09-04 15:04:53 +00:00
meta = with stdenv.lib; {
description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
2017-10-21 01:14:52 +00:00
homepage = "https://github.com/Ultimaker/CuraEngine";
2014-09-04 15:04:53 +00:00
license = licenses.agpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
2014-09-04 15:04:53 +00:00
};
2014-03-25 22:17:17 +00:00
}