summary refs log tree commit diff
path: root/pkgs/applications/misc/cura/default.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-12-27 02:20:25 +0000
committerOrivej Desh <orivej@gmx.fr>2018-12-27 02:21:02 +0000
commit8112354f4f7ec74203c554d041d6e6daccc8df00 (patch)
tree7aa004c495f01de7b76be4856ceb402019c349c4 /pkgs/applications/misc/cura/default.nix
parent3ce19d96b3a26441510373b78fa4880c24597088 (diff)
downloadnixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar.gz
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar.bz2
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar.lz
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar.xz
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.tar.zst
nixpkgs-8112354f4f7ec74203c554d041d6e6daccc8df00.zip
cura: 3.4.1 -> 3.6.0
Diffstat (limited to 'pkgs/applications/misc/cura/default.nix')
-rw-r--r--pkgs/applications/misc/cura/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/applications/misc/cura/default.nix b/pkgs/applications/misc/cura/default.nix
index f97b83a8507..f7907746d10 100644
--- a/pkgs/applications/misc/cura/default.nix
+++ b/pkgs/applications/misc/cura/default.nix
@@ -2,24 +2,26 @@
 
 mkDerivation rec {
   name = "cura-${version}";
-  version = "3.4.1";
+  version = "3.6.0";
 
   src = fetchFromGitHub {
     owner = "Ultimaker";
     repo = "Cura";
     rev = version;
-    sha256 = "03s9nf1aybbnbf1rzqja41m9g6991bbvrcly1lcrfqksianfn06w";
+    sha256 = "0wzkbqdd1670smw1vnq634rkpcjwnhwcvimhvjq904gy2fylgr90";
   };
 
   materials = fetchFromGitHub {
     owner = "Ultimaker";
     repo = "fdm_materials";
-    rev = "3.4.1";
-    sha256 = "1pw30clxqd7qgnidsyx6grizvlgfn8rhj6rd5ppkvv3rdjh0gj28";
+    rev = version;
+    sha256 = "0g2dkph0ll7d9109n17vmfwb4fpc8lhyb1z1q68j8vblyvg08d12";
   };
 
   buildInputs = [ qtbase qtquickcontrols2 ];
-  propagatedBuildInputs = with python3.pkgs; [ uranium zeroconf pyserial numpy-stl ];
+  propagatedBuildInputs = with python3.pkgs; [
+    libsavitar numpy-stl pyserial requests uranium zeroconf
+  ];
   nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
 
   cmakeFlags = [
@@ -44,7 +46,7 @@ mkDerivation rec {
   meta = with lib; {
     description = "3D printer / slicing GUI built on top of the Uranium framework";
     homepage = https://github.com/Ultimaker/Cura;
-    license = licenses.agpl3;
+    license = licenses.lgpl3Plus;
     platforms = platforms.linux;
     maintainers = with maintainers; [ abbradar ];
   };