2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, ament-cmake, ament-lint-common, rosidl-default-generators, std-msgs, rosidl-default-runtime, geometry-msgs }:
|
2019-09-06 12:16:03 -04:00
|
|
|
buildRosPackage rec {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-diagnostic-msgs";
|
|
|
|
version = "0.7.0-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/dashing/diagnostic_msgs/0.7.0-1.tar.gz";
|
|
|
|
name = "0.7.0-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "9cf0bdf5d0132e9773470f3d86f3c18e2ea164306e68c1157f8138b3cec6ae64";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ std-msgs geometry-msgs builtin-interfaces ];
|
|
|
|
checkInputs = [ ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces std-msgs rosidl-default-runtime geometry-msgs ];
|
|
|
|
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A package containing some diagnostics related message and service definitions.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|