2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub
|
|
|
|
, cmake, sip, protobuf, pythonOlder }:
|
2017-02-25 22:58:52 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "libarcus";
|
2019-04-04 09:52:04 +02:00
|
|
|
version = "4.0.0";
|
2018-07-14 22:46:14 +02:00
|
|
|
format = "other";
|
2018-06-23 15:27:58 +02:00
|
|
|
|
2017-02-25 22:58:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "libArcus";
|
|
|
|
rev = version;
|
2019-04-04 09:52:04 +02:00
|
|
|
sha256 = "14c62bsc2cynhaajpdidcqpq2vqwshrdkqyzwvpsjjbfmlx3b1ay";
|
2017-02-25 22:58:52 +01:00
|
|
|
};
|
2018-06-23 15:27:58 +02:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.4.0";
|
|
|
|
|
2019-03-02 14:13:45 +01:00
|
|
|
propagatedBuildInputs = [ sip ];
|
2017-02-25 22:58:52 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-03-02 14:13:45 +01:00
|
|
|
buildInputs = [ protobuf ];
|
2017-02-25 22:58:52 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# To workaround buggy SIP detection which overrides PYTHONPATH
|
|
|
|
sed -i '/SET(ENV{PYTHONPATH}/d' cmake/FindSIP.cmake
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Communication library between internal components for Ultimaker software";
|
2018-06-07 11:52:25 +02:00
|
|
|
homepage = https://github.com/Ultimaker/libArcus;
|
2018-12-27 03:16:32 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2017-02-25 22:58:52 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|