1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/humble/game-controller-spl/default.nix

24 lines
945 B
Nix

# 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-humble-game-controller-spl";
version = "2.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/game_controller_spl-release/archive/release/humble/game_controller_spl/2.1.0-1.tar.gz";
name = "2.1.0-1.tar.gz";
sha256 = "9049b73f61ce832f35368be8054b2322f734fea7674ce865189df2dcbe3f6bd7";
};
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 ];
};
}