1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/eloquent/dwb-core/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, dwb-msgs, geometry-msgs, nav-2d-msgs, nav-2d-utils, nav-msgs, nav2-common, nav2-core, nav2-costmap-2d, nav2-util, pluginlib, rclcpp, sensor-msgs, std-msgs, tf2-ros, visualization-msgs }:
buildRosPackage {
pname = "ros-eloquent-dwb-core";
version = "0.3.4-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/dwb_core/0.3.4-1.tar.gz";
name = "0.3.4-1.tar.gz";
sha256 = "d419423b234d2fa57da4575c807d6bc4d15223001be1345089fdf67cd48e0ba6";
};
buildType = "ament_cmake";
buildInputs = [ nav-2d-msgs nav2-common sensor-msgs visualization-msgs ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ dwb-msgs geometry-msgs nav-2d-utils nav-msgs nav2-core nav2-costmap-2d nav2-util pluginlib rclcpp std-msgs tf2-ros ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''TODO'';
license = with lib.licenses; [ bsdOriginal ];
};
}