mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, dwb-msgs, geometry-msgs, nav-2d-msgs, nav-2d-utils, nav-msgs, nav2-common, nav2-core, nav2-costmap-2d, nav2-util, pluginlib, rclcpp, sensor-msgs, std-msgs, tf2-ros, visualization-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-dwb-core";
|
|
version = "0.3.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/dwb_core/0.3.5-1.tar.gz";
|
|
name = "0.3.5-1.tar.gz";
|
|
sha256 = "d3431880b777ed13f586faea0dc81c4d37281863e2a2a18263809188e5de3f6f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ nav-2d-msgs nav2-common sensor-msgs visualization-msgs ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ dwb-msgs geometry-msgs nav-2d-utils nav-msgs nav2-core nav2-costmap-2d nav2-util pluginlib rclcpp std-msgs tf2-ros ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''TODO'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|