2020-10-23 13:30:31 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-10-23 13:30:31 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-08-12 14:45:56 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, controller-manager-msgs, geometry-msgs, message-generation, message-runtime, nav-msgs, roscpp, rospy, std-msgs, std-srvs, tf, tf2, urdf }:
|
2020-10-23 13:30:31 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-cob-base-controller-utils";
|
2022-08-12 14:45:56 +00:00
|
|
|
version = "0.8.19-r1";
|
2020-10-23 13:30:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-12 14:45:56 +00:00
|
|
|
url = "https://github.com/ipa320/cob_control-release/archive/release/noetic/cob_base_controller_utils/0.8.19-1.tar.gz";
|
|
|
|
name = "0.8.19-1.tar.gz";
|
|
|
|
sha256 = "f09f8753635c89f785ef3e437b3d194c4ab8bb08ceded2271b1aee1f4d9f5f7d";
|
2020-10-23 13:30:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 13:38:03 +00:00
|
|
|
buildInputs = [ message-generation ];
|
2022-08-12 14:45:56 +00:00
|
|
|
propagatedBuildInputs = [ controller-manager-msgs geometry-msgs message-runtime nav-msgs roscpp rospy std-msgs std-srvs tf tf2 urdf ];
|
2020-10-23 13:30:31 +00:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The cob_base_controller_utils package contains common utils for various base_controllers.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|