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

View File

@ -1,11 +1,13 @@
{ stdenv, fetchgit }: { stdenv, fetchurl }:
let
version = "14.03";
in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "curaengine"; name = "curaengine";
src = fetchgit { src = fetchurl {
url = "https://github.com/Ultimaker/CuraEngine"; url = "https://github.com/Ultimaker/CuraEngine/archive/${version}.tar.gz";
rev = "62667ff2e7479b55d75e3d1dc9136242adf4a6a0"; sha256 = "0f37jk6w3zd9x29c1rydqmfdzybx9nbmwdi3y3nzynq1vq7zmxcc";
sha256 = "0c68xmnq4c49vzg2cyqb375kc72rcnghj21wp3919w8sfwil00vr";
}; };
installPhase = '' installPhase = ''
@ -18,5 +20,6 @@ stdenv.mkDerivation {
homepage = https://github.com/Ultimaker/CuraEngine; homepage = https://github.com/Ultimaker/CuraEngine;
license = licenses.agpl3; license = licenses.agpl3;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
}; };
} }