mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-pytest, ament-lint-auto, ament-lint-common, graphicsmagick, launch, launch-ros, launch-testing, nav-msgs, nav2-common, nav2-msgs, nav2-util, rclcpp, rclcpp-lifecycle, std-msgs, tf2, yaml-cpp-vendor }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-nav2-map-server";
|
|
version = "1.1.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_map_server/1.1.0-2.tar.gz";
|
|
name = "1.1.0-2.tar.gz";
|
|
sha256 = "0d347d00bf90fcb6ecc37f5d363fd1b35ee24a1f87966689296f41a5b1a6b6b6";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ nav2-common ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing ];
|
|
propagatedBuildInputs = [ graphicsmagick launch-ros launch-testing nav-msgs nav2-msgs nav2-util rclcpp rclcpp-lifecycle std-msgs tf2 yaml-cpp-vendor ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Refactored map server for ROS2 Navigation'';
|
|
license = with lib.licenses; [ asl20 bsd3 ];
|
|
};
|
|
}
|