2021-01-10 23:54:33 -08:00
|
|
|
{ lib, 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-11-16 00:13:36 -08:00
|
|
|
version = "4.8.0";
|
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-11-16 00:13:36 -08:00
|
|
|
sha256 = "1dvz1rkvm4309yzvj7vy49v1vskr5yfq4nzqdiydp1jb7zpvhqqm";
|
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
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-02-25 13:58:52 -08:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|