cura(engine): update to 14.0{7,3}.
This commit is contained in:
@@ -1,22 +1,25 @@
|
||||
{ stdenv, fetchgit }:
|
||||
{ stdenv, fetchurl }:
|
||||
let
|
||||
version = "14.03";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "curaengine";
|
||||
name = "curaengine";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/Ultimaker/CuraEngine";
|
||||
rev = "62667ff2e7479b55d75e3d1dc9136242adf4a6a0";
|
||||
sha256 = "0c68xmnq4c49vzg2cyqb375kc72rcnghj21wp3919w8sfwil00vr";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Ultimaker/CuraEngine/archive/${version}.tar.gz";
|
||||
sha256 = "0f37jk6w3zd9x29c1rydqmfdzybx9nbmwdi3y3nzynq1vq7zmxcc";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp CuraEngine $out/bin/
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp CuraEngine $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Engine for processing 3D models into 3D printing instructions";
|
||||
homepage = https://github.com/Ultimaker/CuraEngine;
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
meta = with stdenv.lib; {
|
||||
description = "Engine for processing 3D models into 3D printing instructions";
|
||||
homepage = https://github.com/Ultimaker/CuraEngine;
|
||||
license = licenses.agpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user