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/humble/nav2-common/default.nix

26 lines
942 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-python, launch, launch-ros, osrf-pycommon, python3Packages, rclpy }:
buildRosPackage {
pname = "ros-humble-nav2-common";
version = "1.1.12-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_common/1.1.12-1.tar.gz";
name = "1.1.12-1.tar.gz";
sha256 = "c340da10bc2093bff81ec9ad1fba2c86cf537ffd0a9515868cc6750f37fd16d1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-python ];
propagatedBuildInputs = [ ament-cmake-core launch launch-ros osrf-pycommon python3Packages.pyyaml rclpy ];
nativeBuildInputs = [ ament-cmake-core ];
meta = {
description = ''Common support functionality used throughout the navigation 2 stack'';
license = with lib.licenses; [ asl20 ];
};
}