summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2017-10-21 04:14:01 +0300
committerNikolay Amiantov <ab@fmap.me>2017-10-22 04:18:32 +0300
commit6c5184fff782b1792d2577b071c2e33087530a13 (patch)
tree513c2aa9948ca3a62863f8d1a22a282eaaa9f249 /pkgs
parent5ba9411d02bcff1292fe8da27d3648a556b217e1 (diff)
downloadnixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar.gz
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar.bz2
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar.lz
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar.xz
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.tar.zst
nixlib-6c5184fff782b1792d2577b071c2e33087530a13.zip
python.pkgs.libarcus: 2.6.1 -> 3.0.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/libarcus/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/libarcus/default.nix b/pkgs/development/python-modules/libarcus/default.nix
index 47110ffe3ba4..789beaa2384c 100644
--- a/pkgs/development/python-modules/libarcus/default.nix
+++ b/pkgs/development/python-modules/libarcus/default.nix
@@ -7,13 +7,13 @@ else
 stdenv.mkDerivation rec {
   pname = "libarcus";
   name = "${pname}-${version}";
-  version = "2.6.1";
+  version = "3.0.3";
   
   src = fetchFromGitHub {
     owner = "Ultimaker";
     repo = "libArcus";
     rev = version;
-    sha256 = "1arh0gkwcjv0j3arh1w04gbwkn5glrs7gbli0b1ak7dalnicmn7c";
+    sha256 = "05dpd6nx32nws0ghsm365wlsb8hg2s3v9fqcmdk11biwfhnr6rjw";
   };
   
   propagatedBuildInputs = [ sip protobuf ];
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Communication library between internal components for Ultimaker software";
-    homepage = https://github.com/Ultimaker/libArcus;
+    homepage = "https://github.com/Ultimaker/libArcus";
     license = licenses.agpl3;
     platforms = platforms.linux;
     maintainers = with maintainers; [ abbradar ];