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/dashing/nav2-dwb-controller/default.nix

26 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-cmake-gtest, ament-cmake-pytest, ament-lint-auto, ament-lint-common, costmap-queue, dwb-controller, dwb-core, dwb-critics, dwb-msgs, dwb-plugins, launch, launch-testing, nav-2d-msgs, nav-2d-utils }:
buildRosPackage {
pname = "ros-dashing-nav2-dwb-controller";
version = "0.2.6-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/nav2_dwb_controller/0.2.6-1.tar.gz";
name = "0.2.6-1.tar.gz";
sha256 = "0b65e837055a5bd978ff1b7b0657aa962e5aa5903d969099dec19d52261bd824";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing ];
propagatedBuildInputs = [ costmap-queue dwb-controller dwb-core dwb-critics dwb-msgs dwb-plugins nav-2d-msgs nav-2d-utils ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''ROS2 controller (DWB) metapackage'';
license = with lib.licenses; [ asl20 ];
};
}