2020-05-15 12:42:30 +00:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, marti-common-msgs, rosidl-default-generators, rosidl-default-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-mapviz-interfaces";
|
2020-10-23 13:30:31 +00:00
|
|
|
version = "2.1.0-r1";
|
2020-05-15 12:42:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-23 13:30:31 +00:00
|
|
|
url = "https://github.com/swri-robotics-gbp/mapviz-release/archive/release/eloquent/mapviz_interfaces/2.1.0-1.tar.gz";
|
|
|
|
name = "2.1.0-1.tar.gz";
|
|
|
|
sha256 = "c4a6c7c820f23bb73838e2ea1079113e60920d2960997a58fbac9ab343f51b3e";
|
2020-05-15 12:42:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ builtin-interfaces marti-common-msgs ];
|
|
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS interfaces used by Mapviz'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|