2019-04-26 08:49:29 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-04-26 08:49:29 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-07-05 19:52:08 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, gazebo, pr2-controller-manager, pr2-gripper-action, pr2-head-action, single-joint-position-action }:
|
2019-04-26 08:49:29 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-pr2-controller-configuration-gazebo";
|
2019-04-29 19:57:45 -04:00
|
|
|
version = "2.0.14";
|
2019-04-26 08:49:29 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/pr2-gbp/pr2_simulator-release/archive/release/melodic/pr2_controller_configuration_gazebo/2.0.14-0.tar.gz";
|
|
|
|
name = "2.0.14-0.tar.gz";
|
2019-04-29 19:57:45 -04:00
|
|
|
sha256 = "5c439cea522e3fdbd04cb520d3adb886513eff5a52619491b6a2f4e3d84f38fb";
|
2019-04-26 08:49:29 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2020-07-05 19:52:08 -04:00
|
|
|
propagatedBuildInputs = [ gazebo pr2-controller-manager pr2-gripper-action pr2-head-action single-joint-position-action ];
|
2019-04-26 08:49:29 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A copy of the pr2_controller_configuration package, for use in
|
|
|
|
the PR2 simulator. We maintain two copies to allow for controller
|
|
|
|
gains to be set differently between hardware and simulation.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-04-26 08:49:29 -04:00
|
|
|
};
|
|
|
|
}
|