2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, rclpy, splsm-7-conversion }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-r2r-spl-7";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "3.0.1-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/r2r_spl-release/archive/release/rolling/r2r_spl_7/3.0.1-2.tar.gz";
|
|
|
|
name = "3.0.1-2.tar.gz";
|
|
|
|
sha256 = "93c199e5558da311f06547600d680c06337a02f8ca1ce1855f4277ba676d2e3a";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ rclpy splsm-7-conversion ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Robot-To-Robot communication in RoboCup SPL using SPLSM V7'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|