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/ros-monitoring-msgs/default.nix

26 lines
848 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, message-generation, catkin, message-runtime }:
buildRosPackage {
pname = "ros-melodic-ros-monitoring-msgs";
version = "1.0.1-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/ros_monitoring_msgs-release/archive/release/melodic/ros_monitoring_msgs/1.0.1-1.tar.gz";
name = "1.0.1-1.tar.gz";
sha256 = "d9215590fe7e1d5c0dadd7a19195db12250e64327bd5423ad6292c0a7e920165";
};
buildType = "catkin";
buildInputs = [ std-msgs message-generation ];
propagatedBuildInputs = [ std-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Messages for publishing monitoring data about ROS systems'';
license = with lib.licenses; [ asl20 ];
};
}