# Copyright 2025 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, catkin, cpp-common, roscpp-traits, rostime }: buildRosPackage { pname = "ros-noetic-roscpp-serialization"; version = "0.7.3-r1"; src = fetchurl { 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"; }; buildType = "catkin"; buildInputs = [ catkin ]; propagatedBuildInputs = [ cpp-common roscpp-traits rostime ]; nativeBuildInputs = [ catkin ]; meta = { description = "roscpp_serialization contains the code for serialization as described in MessagesSerializationAndAdaptingTypes. This package is a component of roscpp."; license = with lib.licenses; [ bsdOriginal ]; }; }