Add ROS2 Jazzy Skills, Repositories, and Nix Flake Setup
- Add Nix flake configuration (`flake.nix`, overlays, `package.nix`) for seamless package builds, dependency management, and development shell setup.
This commit is contained in:
parent
c7315a02a4
commit
7175f38b06
20 changed files with 521 additions and 3 deletions
23
rbs_task_planner/package.nix
Normal file
23
rbs_task_planner/package.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Automatically generated by: ros2nix --distro jazzy --flake --license Apache-2.0
|
||||
|
||||
# Copyright 2025 None
|
||||
# Distributed under the terms of the Apache-2.0 license
|
||||
|
||||
{ lib, buildRosPackage, ament-cmake, ament-cmake-gtest, ament-index-cpp, ament-lint-auto, ament-lint-common, plansys2-bringup, plansys2-bt-actions, plansys2-domain-expert, plansys2-executor, plansys2-msgs, plansys2-pddl-parser, plansys2-planner, plansys2-problem-expert, plansys2-terminal, popf, test-msgs }:
|
||||
buildRosPackage rec {
|
||||
pname = "ros-jazzy-rbs-task-planner";
|
||||
version = "0.0.1";
|
||||
|
||||
src = ./.;
|
||||
|
||||
buildType = "ament_cmake";
|
||||
buildInputs = [ ament-cmake ];
|
||||
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common test-msgs ];
|
||||
propagatedBuildInputs = [ ament-index-cpp plansys2-bringup plansys2-bt-actions plansys2-domain-expert plansys2-executor plansys2-msgs plansys2-pddl-parser plansys2-planner plansys2-problem-expert plansys2-terminal popf ];
|
||||
nativeBuildInputs = [ ament-cmake ];
|
||||
|
||||
meta = {
|
||||
description = "ROS2 task planner for manipulator";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue