2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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, ament-cmake-gtest, ament-lint-auto, ament-lint-common, nav-msgs, rclcpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-dummy-map-server";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "0.32.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/rolling/dummy_map_server/0.32.1-1.tar.gz";
|
|
|
|
name = "0.32.1-1.tar.gz";
|
|
|
|
sha256 = "c4dc771361198cf0446b2ad308aae9b5128c82f1cb1f9edbb1e8838600802098";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ nav-msgs rclcpp ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''dummy map server node'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|