2024-12-27 13:14:54 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-12-27 13:14:54 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-clearpath-platform-msgs";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "2.4.0-r1";
|
2024-12-27 13:14:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/clearpath-gbp/clearpath_msgs-release/archive/release/jazzy/clearpath_platform_msgs/2.4.0-1.tar.gz";
|
|
|
|
name = "2.4.0-1.tar.gz";
|
|
|
|
sha256 = "77350f027dccda80a2b41d17fbc8b3add1ed7b7b0328dd1669ac3e8202a6b35c";
|
2024-12-27 13:14:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake rosidl-default-generators ];
|
|
|
|
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime std-msgs ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Messages for Clearpath Platforms.";
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|