2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, rmf-building-map-tools, ros2run }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmf-traffic-editor-test-maps";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.12.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmf_traffic_editor-release/archive/release/rolling/rmf_traffic_editor_test_maps/1.12.0-1.tar.gz";
|
|
|
|
name = "1.12.0-1.tar.gz";
|
|
|
|
sha256 = "d6d472d53f857c15792005f691294a385aad42c48237b6448072c78c3ca6d24c";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
|
|
|
|
nativeBuildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
|
|
|
|
|
|
|
|
meta = {
|
2024-07-26 13:34:25 +00:00
|
|
|
description = "Some test maps for traffic_editor and rmf_building_map_tools.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|