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
22
rbs_utils/rbs_utils_interfaces/package.nix
Normal file
22
rbs_utils/rbs_utils_interfaces/package.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
# 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, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
|
||||
buildRosPackage rec {
|
||||
pname = "ros-jazzy-rbs-utils-interfaces";
|
||||
version = "0.0.0";
|
||||
|
||||
src = ./.;
|
||||
|
||||
buildType = "ament_cmake";
|
||||
buildInputs = [ ament-cmake rosidl-default-generators ];
|
||||
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime ];
|
||||
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
|
||||
|
||||
meta = {
|
||||
description = "Interfaces for read robossembler_db config";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue