2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, gc-spl-interfaces, python3Packages, pythonPackages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-gc-spl";
|
2024-05-10 13:12:06 +00:00
|
|
|
version = "4.0.1-r1";
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-05-10 13:12:06 +00:00
|
|
|
url = "https://github.com/ros2-gbp/game_controller_spl-release/archive/release/rolling/gc_spl/4.0.1-1.tar.gz";
|
|
|
|
name = "4.0.1-1.tar.gz";
|
|
|
|
sha256 = "27aafbe3325a6d4c4da6b84a25afa4b7274013233e3495400dd6d414b3204ec3";
|
2024-02-02 13:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ gc-spl-interfaces python3Packages.construct rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "GameController-Robot communication in RoboCup SPL";
|
2024-02-02 13:15:52 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|