- Add Nix flake configuration (`flake.nix`, overlays, `package.nix`) for seamless package builds, dependency management, and development shell setup.
21 lines
651 B
Nix
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" ];
|
|
};
|
|
}
|