1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/imu-monitor/default.nix

25 lines
915 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, pr2-mechanism-controllers, python-orocos-kdl, sensor-msgs, catkin, rospy, diagnostic-msgs }:
buildRosPackage {
pname = "ros-kinetic-imu-monitor";
version = "1.6.30";
src = fetchurl {
url = https://github.com/pr2-gbp/pr2_robot-release/archive/release/kinetic/imu_monitor/1.6.30-0.tar.gz;
sha256 = "12ea5bcaec3b7ae9d374995f5a024ea54343c912bead97cc49e2564efc105d06";
};
propagatedBuildInputs = [ pr2-mechanism-controllers rospy diagnostic-msgs python-orocos-kdl sensor-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains a single node that monitors the drift of the IMU
gyroscopes. The results are published to the '/diagnostics' topic and
are aggregated in the PR2 dashboard.'';
#license = lib.licenses.BSD;
};
}