2020-05-23 15:15:06 -04:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cpp-common, roscpp-traits, rostime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-roscpp-serialization";
|
2023-07-07 13:21:03 +00:00
|
|
|
version = "0.7.3-r1";
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-07 13:21:03 +00:00
|
|
|
url = "https://github.com/ros-gbp/roscpp_core-release/archive/release/noetic/roscpp_serialization/0.7.3-1.tar.gz";
|
|
|
|
name = "0.7.3-1.tar.gz";
|
|
|
|
sha256 = "349854ff6feedec540d14dda9c016964adb5b4d0398026a9bc05b1b765930c64";
|
2020-05-23 15:15:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ cpp-common roscpp-traits rostime ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "roscpp_serialization contains the code for serialization as described in
|
|
|
|
<a href=\"http://www.ros.org/wiki/roscpp/Overview/MessagesSerializationAndAdaptingTypes\">MessagesSerializationAndAdaptingTypes</a>.
|
2020-05-23 15:15:06 -04:00
|
|
|
|
2024-03-23 14:09:26 +00:00
|
|
|
This package is a component of <a href=\"http://www.ros.org/wiki/roscpp\">roscpp</a>.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|