1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/rcgcd-spl-14/default.nix

27 lines
924 B
Nix
Raw Normal View History

# Copyright 2024 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-rolling-rcgcd-spl-14";
version = "4.0.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/gc_spl-release/archive/release/rolling/rcgcd_spl_14/4.0.0-2.tar.gz";
name = "4.0.0-2.tar.gz";
sha256 = "f83b7ac52ec35f73d0d535de9255b1ed41329ac93e7fd0d03dbca6c01e92e244";
};
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 V14 ROS msg";
license = with lib.licenses; [ asl20 ];
};
}