mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-25 00:05:33 +03:00
26 lines
949 B
Nix
26 lines
949 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, ament-cmake, rosidl-default-generators, std-msgs, rosidl-default-runtime }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-dashing-ros-monitoring-msgs";
|
||
|
version = "2.0.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/aws-gbp/ros_monitoring_msgs-release/archive/release/dashing/ros_monitoring_msgs/2.0.0-1.tar.gz";
|
||
|
name = "2.0.0-1.tar.gz";
|
||
|
sha256 = "e64f86f822651ad1310f7d0c585a7dcac9d8e14f613a71f28fac2fb56b412d3e";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ std-msgs builtin-interfaces ];
|
||
|
propagatedBuildInputs = [ std-msgs rosidl-default-runtime builtin-interfaces ];
|
||
|
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Messages for publishing monitoring data about ROS systems'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|