mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2022 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, angles, nav-2d-msgs, nav-2d-utils, nav2-common, nav2-core, nav2-msgs, nav2-util, pluginlib, rclcpp, rclcpp-action, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-nav2-controller";
|
|
version = "1.1.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_controller/1.1.0-2.tar.gz";
|
|
name = "1.1.0-2.tar.gz";
|
|
sha256 = "74e57372c87548c8717ad27e08aff3344213b282ff18075674dd200bc49e19e8";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ nav2-common ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ angles nav-2d-msgs nav-2d-utils nav2-core nav2-msgs nav2-util pluginlib rclcpp rclcpp-action std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Controller action interface'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|