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