2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# 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-jazzy-dummy-map-server";
|
2024-09-13 14:15:34 +00:00
|
|
|
version = "0.33.5-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-13 14:15:34 +00:00
|
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/dummy_map_server/0.33.5-1.tar.gz";
|
|
|
|
name = "0.33.5-1.tar.gz";
|
|
|
|
sha256 = "3e9ba04eb33a1e30e2207e37c2c510a8e29db55bc39a006e9840a23beeba4b7b";
|
2024-05-24 14:00:52 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|