runtime/robonomics/package.nix
Bill Finger 7175f38b06 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.
2025-02-01 16:45:53 +03:00

21 lines
651 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-copyright, ament-flake8, ament-pep257, pythonPackages, rclpy }:
buildRosPackage rec {
pname = "ros-jazzy-robonomics";
version = "0.1.0";
src = ./.;
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ rclpy ];
meta = {
description = "Package for Robossember-Robonomics interoperability";
license = with lib.licenses; [ "Apache-license-2.0" ];
};
}