- Add Nix flake configuration (`flake.nix`, overlays, `package.nix`) for seamless package builds, dependency management, and development shell setup.
23 lines
968 B
Nix
23 lines
968 B
Nix
# 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-python, ament-lint-auto, ament-lint-common, cv-bridge, image-transport, perception-pcl, rbs-skill-interfaces, rclcpp, rclpy, sensor-msgs, std-msgs, tf2-eigen, tf2-ros, visualization-msgs }:
|
|
buildRosPackage rec {
|
|
pname = "ros-jazzy-rbs-perception";
|
|
version = "0.0.0";
|
|
|
|
src = ./.;
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ament-cmake-python ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ cv-bridge image-transport perception-pcl rbs-skill-interfaces rclcpp rclpy sensor-msgs std-msgs tf2-eigen tf2-ros visualization-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-python ];
|
|
|
|
meta = {
|
|
description = "An node for robot perception";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|