cura(engine): update to 14.0{7,3}.

This commit is contained in:
Moritz Ulrich 2014-09-04 17:04:53 +02:00
parent 332395b262
commit 963a554b31
2 changed files with 26 additions and 23 deletions

View file

@ -1,15 +1,14 @@
{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchgit }:
{ stdenv, python27Packages, curaengine, makeDesktopItem, fetchurl }:
let
py = python27Packages;
version = "14.07";
in
stdenv.mkDerivation rec {
name = "cura";
src = fetchgit {
url = "https://github.com/daid/Cura";
rev = "58414695269d60ca9b165e8cbc3424933ed79403";
sha256 = "1nxrrz8sjjx9i9cyvz15vay6yarnywp3vlk7qzr65sw88lzxgq23";
fetchSubmodules = false;
src = fetchurl {
url = "https://github.com/daid/Cura/archive/${version}.tar.gz";
sha256 = "1jfgkb2qh1syakcssk66yhnfjm9p9qcx48v34bbza9nryrdlmxdb";
};
desktopItem = makeDesktopItem {
@ -67,5 +66,6 @@ stdenv.mkDerivation rec {
homepage = https://github.com/daid/Cura;
license = licenses.agpl3;
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}

View file

@ -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 ];
};
}