1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/melodic/pr2-calibration-controllers/default.nix

25 lines
1.2 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, pr2-mechanism-controllers, pluginlib, pr2-controller-interface, realtime-tools, catkin, robot-mechanism-controllers, std-msgs, roscpp, pr2-mechanism-model }:
buildRosPackage {
pname = "ros-melodic-pr2-calibration-controllers";
version = "1.10.16-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/pr2-gbp/pr2_controllers-release/archive/release/melodic/pr2_calibration_controllers/1.10.16-1.tar.gz;
sha256 = "1c83da96ce0544a3f9d2c0a199c38035e8fd8781dc80ac3d4fca0bd21cd66aff";
2019-03-21 00:14:59 -04:00
};
buildInputs = [ pr2-mechanism-controllers pluginlib pr2-controller-interface realtime-tools robot-mechanism-controllers std-msgs roscpp pr2-mechanism-model ];
propagatedBuildInputs = [ pr2-mechanism-controllers pluginlib pr2-controller-interface realtime-tools robot-mechanism-controllers std-msgs roscpp pr2-mechanism-model ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The pr2_calibration_controllers package contains the controllers
used to bring all the joints in the PR2 to a calibrated state.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}