curaengine-lulzbot: fix build

This commit is contained in:
Jörg Thalheim 2020-03-28 03:05:28 +00:00
parent d0f556a2ff
commit 716aa1abdb
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -1,6 +1,6 @@
{ stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
{ gcc8Stdenv, callPackage, fetchgit, fetchpatch, cmake, libarcusLulzbot, stb, protobuf }:
stdenv.mkDerivation rec {
gcc8Stdenv.mkDerivation rec {
pname = "curaengine-lulzBot";
version = "3.6.21";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DCURA_ENGINE_VERSION=${version}" ];
meta = with stdenv.lib; {
meta = with gcc8Stdenv.lib; {
description = "A powerful, fast and robust engine for processing 3D models into 3D printing instruction";
homepage = https://code.alephobjects.com/source/curaengine-lulzbot/;
license = licenses.agpl3;
@ -23,4 +23,3 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ chaduffy ];
};
}