mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
883 B
Nix
24 lines
883 B
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, costmap-queue, dwb-core, dwb-critics, dwb-msgs, dwb-plugins, nav-2d-msgs, nav-2d-utils }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-nav2-dwb-controller";
|
|
version = "1.1.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_dwb_controller/1.1.0-2.tar.gz";
|
|
name = "1.1.0-2.tar.gz";
|
|
sha256 = "3cc88a0e6fa0dae479bcf313b1313baeaa12bd6df312c001313b3d010d593e59";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ costmap-queue 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 ];
|
|
};
|
|
}
|