mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
924 B
Nix
23 lines
924 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, hardware-interface, pluginlib, realtime-tools, sensor-msgs, catkin, controller-interface, roscpp }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-imu-sensor-controller";
|
|
version = "0.13.5";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/ros_controllers-release/archive/release/kinetic/imu_sensor_controller/0.13.5-0.tar.gz;
|
|
sha256 = "0499419cd9f77c00890c12bd32da24c3c82e7b8120d7a0e1f5dbd174b72698fa";
|
|
};
|
|
|
|
buildInputs = [ hardware-interface controller-interface pluginlib realtime-tools sensor-msgs roscpp ];
|
|
propagatedBuildInputs = [ hardware-interface controller-interface pluginlib realtime-tools sensor-msgs roscpp ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Controller to publish state of IMU sensors'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|