mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
932 B
Nix
24 lines
932 B
Nix
|
|
# Copyright 2025 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, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-game-controller-spl";
|
|
version = "5.0.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/game_controller_spl-release/archive/release/rolling/game_controller_spl/5.0.0-2.tar.gz";
|
|
name = "5.0.0-2.tar.gz";
|
|
sha256 = "c1d00f267f5862d4723f543cd5207d5687032a752e1d35c65e2b198ee744f565";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
|
|
propagatedBuildInputs = [ game-controller-spl-interfaces python3Packages.construct rclpy ];
|
|
|
|
meta = {
|
|
description = "GameController-Robot communication in RoboCup SPL";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|