1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/humble/rmf-traffic-editor-test-maps/default.nix

24 lines
859 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rmf-building-map-tools, ros2run }:
buildRosPackage {
pname = "ros-humble-rmf-traffic-editor-test-maps";
version = "1.6.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_traffic_editor-release/archive/release/humble/rmf_traffic_editor_test_maps/1.6.2-1.tar.gz";
name = "1.6.2-1.tar.gz";
sha256 = "9d3bac5398c840205855e1a557853c400e1ac188243fbb9932c8cdaeeee196b5";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
nativeBuildInputs = [ ament-cmake rmf-building-map-tools ros2run ];
meta = {
description = ''Some test maps for traffic_editor and rmf_building_map_tools.'';
license = with lib.licenses; [ asl20 ];
};
}