2020-07-31 13:40:46 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-07-31 13:40:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-11-25 19:56:04 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, dynamic-graph, eigenpy, git }:
|
2020-07-31 13:40:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-dynamic-graph-python";
|
2022-09-20 16:42:07 -04:00
|
|
|
version = "4.0.9-r1";
|
2020-07-31 13:40:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-09-20 16:42:07 -04:00
|
|
|
url = "https://github.com/stack-of-tasks/dynamic-graph-python-ros-release/archive/release/noetic/dynamic-graph-python/4.0.9-1.tar.gz";
|
|
|
|
name = "4.0.9-1.tar.gz";
|
|
|
|
sha256 = "cc53de43ac9dea8a20c816669af4fc1cdec3d46ca22738086ebc1508bfbdfdf8";
|
2020-07-31 13:40:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2022-09-20 16:42:07 -04:00
|
|
|
buildInputs = [ cmake doxygen git ];
|
2020-11-25 19:56:04 -05:00
|
|
|
propagatedBuildInputs = [ boost catkin dynamic-graph eigenpy ];
|
2020-07-31 13:40:46 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Dynamic graph library Python bindings'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|