pythonPackages.pykdl: fix build with latest SIP
Backport an upstream patch to fix the build. Only needed to build the Python bindings, not orocos-kdl.
This commit is contained in:
parent
272744825d
commit
053c8d85f0
@ -1,9 +1,19 @@
|
|||||||
{ lib, stdenv, toPythonModule, cmake, orocos-kdl, python, sip }:
|
{ lib, stdenv, toPythonModule, fetchpatch, cmake, orocos-kdl, python, sip }:
|
||||||
|
|
||||||
toPythonModule (stdenv.mkDerivation {
|
toPythonModule (stdenv.mkDerivation {
|
||||||
pname = "pykdl";
|
pname = "pykdl";
|
||||||
inherit (orocos-kdl) version src;
|
inherit (orocos-kdl) version src;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix build with SIP 4.19.23+. Can be removed with version 1.5.
|
||||||
|
# https://github.com/orocos/orocos_kinematics_dynamics/pull/270
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/orocos/orocos_kinematics_dynamics/commit/d8d087ad0e1c41f3489d1a255ebfa27b5695196b.patch";
|
||||||
|
sha256 = "0qyskqxv4a982kidzzyh34xj2iiw791ipbbl29jg4qb4l21xwqlg";
|
||||||
|
stripLen = 1;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
sourceRoot = "source/python_orocos_kdl";
|
sourceRoot = "source/python_orocos_kdl";
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
Loading…
Reference in New Issue
Block a user