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

27 lines
758 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libarcus, stb, protobuf }:
stdenv.mkDerivation rec {
pname = "curaengine";
version = "4.3.0";
2014-03-25 23:17:17 +01:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "CuraEngine";
rev = version;
sha256 = "074qcaj1v2ri9wppx9lr066nlidkrsp9m1rrrk2hs2b61x0340ff";
2014-09-04 17:04:53 +02:00
};
2014-03-25 23:17:17 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ libarcus stb protobuf ];
2016-04-14 00:13:23 +02:00
2018-06-07 11:55:47 +02:00
cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ];
2014-03-25 23:17:17 +01:00
2014-09-04 17:04:53 +02: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 17:04:53 +02:00
license = licenses.agpl3;
platforms = platforms.linux;
2019-08-08 09:09:25 +02:00
maintainers = with maintainers; [ abbradar gebner ];
2014-09-04 17:04:53 +02:00
};
2014-03-25 23:17:17 +01:00
}