2019-06-01 02:19:16 -07:00
|
|
|
{ stdenv, buildPythonPackage, python, fetchFromGitHub
|
2018-07-20 17:44:44 -07:00
|
|
|
, cmake, sip, protobuf, pythonOlder }:
|
2017-02-25 13:58:52 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "libarcus";
|
2020-05-10 10:03:06 -07:00
|
|
|
version = "4.6.1";
|
2018-07-14 13:46:14 -07:00
|
|
|
format = "other";
|
2018-06-23 06:27:58 -07:00
|
|
|
|
2017-02-25 13:58:52 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "libArcus";
|
|
|
|
rev = version;
|
2020-03-09 15:45:37 -07:00
|
|
|
sha256 = "1sfy8skvgw6hiihs9jmfn7a13yappqwffir98pahyg7cim7p55kr";
|
2017-02-25 13:58:52 -08:00
|
|
|
};
|
2018-06-23 06:27:58 -07:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.4.0";
|
|
|
|
|
2019-03-02 05:13:45 -08:00
|
|
|
propagatedBuildInputs = [ sip ];
|
2017-02-25 13:58:52 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-03-02 05:13:45 -08:00
|
|
|
buildInputs = [ protobuf ];
|
2017-02-25 13:58:52 -08:00
|
|
|
|
|
|
|
postPatch = ''
|
2019-12-06 17:58:37 -08:00
|
|
|
sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake
|
2017-02-25 13:58:52 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Communication library between internal components for Ultimaker software";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/Ultimaker/libArcus";
|
2018-12-26 18:16:32 -08:00
|
|
|
license = licenses.lgpl3Plus;
|
2017-02-25 13:58:52 -08:00
|
|
|
platforms = platforms.linux;
|
2019-08-08 00:09:25 -07:00
|
|
|
maintainers = with maintainers; [ abbradar gebner ];
|
2017-02-25 13:58:52 -08:00
|
|
|
};
|
|
|
|
}
|