mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-15 06:31:44 +03:00
26 lines
943 B
Nix
26 lines
943 B
Nix
![]() |
|
||
|
# Copyright 2019 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-eloquent-nav2-common";
|
||
|
version = "0.3.1-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_common/0.3.1-1.tar.gz";
|
||
|
name = "0.3.1-1.tar.gz";
|
||
|
sha256 = "8fbf386d2ad0995755f69bc9ff0c5edd3a3354eaf4de67dce13fbb21d821aa08";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|