about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-10-21 04:15:00 +0300
committerNikolay Amiantov <ab@fmap.me>2017-10-22 04:18:45 +0300
commit6d86fcb86de75a307684cf2e6b8a518bd458427c (patch)
treec11adc24ce0f44aff541aabc885954f1fb7ba9c9 /pkgs/applications
parenta5091226bd000d80cb1c81a0bc7591f6747fdebc (diff)
cura: 2.6.1 -> 3.0.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/cura/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix
index 3fb669072955c..1012f187497ac 100644
--- a/pkgs/applications/misc/cura/default.nix
+++ b/pkgs/applications/misc/cura/default.nix
@@ -1,18 +1,18 @@
-{ mkDerivation, lib, fetchFromGitHub, cmake, python3, qtbase, curaengine }:
+{ mkDerivation, lib, fetchFromGitHub, cmake, python3, qtbase, qtquickcontrols, curaengine }:
 
 mkDerivation rec {
   name = "cura-${version}";
-  version = "2.6.1";
+  version = "3.0.3";
 
   src = fetchFromGitHub {
     owner = "Ultimaker";
     repo = "Cura";
     rev = version;
-    sha256 = "03rsw6nafg3y9if2dlnzsj6c9x3x7cv6gs4a1w84jaq4p1f8fcsd";
+    sha256 = "0ks8bb3mif6kyvb01ddhpn1c2l31s8fxivi70kmpm743sqv4kjaa";
   };
 
-  buildInputs = [ qtbase ];
-  propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial ];
+  buildInputs = [ qtbase qtquickcontrols ];
+  propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial numpy-stl ];
   nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
 
   cmakeFlags = [ "-DURANIUM_DIR=${python3.pkgs.uranium.src}" ];
@@ -28,7 +28,7 @@ mkDerivation rec {
 
   meta = with lib; {
     description = "3D printer / slicing GUI built on top of the Uranium framework";
-    homepage = https://github.com/Ultimaker/Cura;
+    homepage = "https://github.com/Ultimaker/Cura";
     license = licenses.agpl3;
     platforms = platforms.linux;
     maintainers = with maintainers; [ abbradar ];