mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
26 lines
967 B
Nix
26 lines
967 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rosidl-default-generators, rosidl-default-runtime }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-game-controller-spl-interfaces";
|
|
version = "2.2.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/game_controller_spl-release/archive/release/humble/game_controller_spl_interfaces/2.2.0-2.tar.gz";
|
|
name = "2.2.0-2.tar.gz";
|
|
sha256 = "ebbdd5deecd2365b4b6c5cc5c2c48fbda58c19de65418dbf09d1ae0974629738";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ rosidl-default-runtime ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "RoboCup SPL GameController Data ROS msg";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|