2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-05-15 12:42:30 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-unique-identifier-msgs";
|
2020-05-15 12:42:30 +00:00
|
|
|
version = "2.1.1-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-05-15 12:42:30 +00:00
|
|
|
url = "https://github.com/ros2-gbp/unique_identifier_msgs-release/archive/release/eloquent/unique_identifier_msgs/2.1.1-1.tar.gz";
|
|
|
|
name = "2.1.1-1.tar.gz";
|
|
|
|
sha256 = "210839c29ed2529b847f699fdf61c58f5ab44fbf7d0eea233b833c1d669f6d61";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2020-05-15 12:42:30 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2019-12-09 05:16:46 +00:00
|
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
2019-12-09 23:14:51 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS messages for universally unique identifiers.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|