1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-08 19:34:41 +03:00
nix-ros-overlay/eloquent/nav2-map-server/default.nix

26 lines
1.2 KiB
Nix

# Copyright 2019 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-util, rclcpp, rclcpp-lifecycle, std-msgs, tf2, yaml-cpp-vendor }:
buildRosPackage {
pname = "ros-eloquent-nav2-map-server";
version = "0.3.1-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_map_server/0.3.1-1.tar.gz";
name = "0.3.1-1.tar.gz";
sha256 = "d70506b81865fd5d30b59048b04f37a297d85081da853c7005499ee790f19f3b";
};
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-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 bsdOriginal ];
};
}