nixpkgs/pkgs/development/python-modules/libarcus/default.nix

35 lines
984 B
Nix
Raw Normal View History

2017-02-26 00:58:52 +03:00
{ stdenv, lib, fetchFromGitHub, python, cmake, sip, protobuf }:
if lib.versionOlder python.version "3.4.0"
then throw "libArcus not supported for interpreter ${python.executable}"
else
stdenv.mkDerivation rec {
pname = "libarcus";
name = "${pname}-${version}";
2017-10-21 04:14:01 +03:00
version = "3.0.3";
2017-02-26 00:58:52 +03:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
2017-10-21 04:14:01 +03:00
sha256 = "05dpd6nx32nws0ghsm365wlsb8hg2s3v9fqcmdk11biwfhnr6rjw";
2017-02-26 00:58:52 +03:00
};
propagatedBuildInputs = [ sip protobuf ];
nativeBuildInputs = [ cmake ];
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";
2017-10-21 04:14:01 +03:00
homepage = "https://github.com/Ultimaker/libArcus";
2017-02-26 00:58:52 +03:00
license = licenses.agpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}