Merge pull request #43541 from jfrankenau/update-cura

cura: 3.3.1 -> 3.4.1
This commit is contained in:
Franz Pletz
2018-07-15 21:45:35 +00:00
committed by GitHub
6 changed files with 42 additions and 11 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "stb-${version}";
version = "20180211";
src = fetchFromGitHub {
owner = "nothings";
repo = "stb";
rev = "e6afb9cbae4064da8c3e69af3ff5c4629579c1d2";
sha256 = "079nsn9bnb8c0vfq26g5l53q6gzx19a5x9q2nb55mpcljxsgxnmf";
};
dontBuild = true;
installPhase = ''
mkdir -p $out/include/stb
cp *.h $out/include/stb/
'';
meta = with stdenv.lib; {
description = "Single-file public domain libraries for C/C++";
homepage = https://github.com/nothings/stb;
license = licenses.publicDomain;
platforms = platforms.all;
maintainers = with maintainers; [ jfrankenau ];
};
}

View File

@@ -3,7 +3,8 @@
buildPythonPackage rec {
pname = "libarcus";
version = "3.3.0";
version = "3.4.1";
format = "other";
src = fetchFromGitHub {
owner = "Ultimaker";

View File

@@ -2,7 +2,7 @@
, pyqt5, numpy, scipy, libarcus, doxygen, gettext, pythonOlder }:
buildPythonPackage rec {
version = "3.3.0";
version = "3.4.1";
pname = "uranium";
format = "other";
@@ -10,7 +10,7 @@ buildPythonPackage rec {
owner = "Ultimaker";
repo = "Uranium";
rev = version;
sha256 = "1rg0l2blndnbdfcgkjc2r29cnjdm009rz8lnc225ilh9d7w1srbb";
sha256 = "1r6d65c9xfkn608k6wv3dprpks5h8g2v9mi4a67ifpzyw4y3f0rk";
};
disabled = pythonOlder "3.5.0";