1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/iron/gc-spl-2022/default.nix

25 lines
975 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, rcgcd-spl-14, rcgcd-spl-14-conversion, rcgcrd-spl-4, rcgcrd-spl-4-conversion, rclpy }:
buildRosPackage {
pname = "ros-iron-gc-spl-2022";
version = "3.0.0-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/gc_spl-release/archive/release/iron/gc_spl_2022/3.0.0-4.tar.gz";
name = "3.0.0-4.tar.gz";
sha256 = "5cb65c0bae9ec9258b4b859561f11347b801039fe39f1f768455b304c3819eaf";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ rcgcd-spl-14 rcgcd-spl-14-conversion rcgcrd-spl-4 rcgcrd-spl-4-conversion rclpy ];
meta = {
description = ''GameController-Robot communication in RoboCup SPL at RoboCup2022'';
license = with lib.licenses; [ asl20 ];
};
}