2023-09-01 13:18:33 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-09-01 13:18:33 +00:00
|
|
|
# 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-rolling-mapviz-interfaces";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "2.4.4-r1";
|
2023-09-01 13:18:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mapviz-release/archive/release/rolling/mapviz_interfaces/2.4.4-1.tar.gz";
|
|
|
|
name = "2.4.4-1.tar.gz";
|
|
|
|
sha256 = "0464fbd754e838ff7828d0a8a80e15205abb0b1e1dabc0c14b9d115b6aa1c420";
|
2023-09-01 13:18:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ builtin-interfaces marti-common-msgs rosidl-default-generators ];
|
|
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
|
|
nativeBuildInputs = [ rosidl-default-generators ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "ROS interfaces used by Mapviz";
|
2023-09-01 13:18:33 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|