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/kinetic/libsensors-monitor/default.nix

23 lines
827 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, diagnostic-updater, catkin, lm_sensors, roscpp }:
buildRosPackage {
pname = "ros-kinetic-libsensors-monitor";
version = "0.2.0";
src = fetchurl {
url = https://github.com/ros-gbp/linux_peripheral_interfaces-release/archive/release/kinetic/libsensors_monitor/0.2.0-0.tar.gz;
sha256 = "aff4a809302d370d75499dccc31136723e8b69293ed6b8bd4de011b88337e749";
};
propagatedBuildInputs = [ diagnostic-updater roscpp lm_sensors ];
nativeBuildInputs = [ diagnostic-updater catkin roscpp lm_sensors ];
meta = {
description = ''A ROS node for using libsensors to provide diagnostics information about the sensors on a computer system.'';
#license = lib.licenses.BSD;
};
}