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, game-controller-spl-interfaces, python3Packages, pythonPackages, rclpy }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-game-controller-spl";
|
2024-03-08 13:41:18 +00:00
|
|
|
version = "4.0.0-r2";
|
2024-02-02 13:15:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-03-08 13:41:18 +00:00
|
|
|
url = "https://github.com/ros2-gbp/gc_spl-release/archive/release/rolling/game_controller_spl/4.0.0-2.tar.gz";
|
|
|
|
name = "4.0.0-2.tar.gz";
|
|
|
|
sha256 = "a567246c6d86cbe7d57ad8b0885593d1dc3060da178aefafebd2d41fc94ccd2a";
|
2024-02-02 13:15:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ game-controller-spl-interfaces python3Packages.construct rclpy ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''GameController-Robot communication in RoboCup SPL'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|