1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/nav2-dwb-controller/default.nix

24 lines
887 B
Nix

# Copyright 2020 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-eloquent-nav2-dwb-controller";
version = "0.3.4-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_dwb_controller/0.3.4-1.tar.gz";
name = "0.3.4-1.tar.gz";
sha256 = "1132deaf906d8d150a3b9bf75038f055c6962cec253fc60cd05386d5eac1a8ee";
};
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 ];
};
}