nix-ros-overlay/distros/foxy/nav2-dwb-controller/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
912 B
Nix

# Copyright 2023 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-foxy-nav2-dwb-controller";
version = "0.4.7-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/foxy/nav2_dwb_controller/0.4.7-1.tar.gz";
name = "0.4.7-1.tar.gz";
sha256 = "e6c90d0f551c86f0d9a1458392121c77793b096c74304f50d401960de107ceae";
};
buildType = "ament_cmake";
buildInputs = [ 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 ];
};
}