# Copyright 2023 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-ros, ament-lint-auto, ament-lint-common, rcutils }: buildRosPackage { pname = "ros-rolling-rcpputils"; version = "2.8.0-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/rolling/rcpputils/2.8.0-1.tar.gz"; name = "2.8.0-1.tar.gz"; sha256 = "427f30e5cd2da2e83120f3d218523214655e122701c51d25b675903f5193a8c5"; }; buildType = "ament_cmake"; buildInputs = [ ament-cmake ament-cmake-ros ]; checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ]; propagatedBuildInputs = [ rcutils ]; nativeBuildInputs = [ ament-cmake ament-cmake-ros ]; meta = { description = ''Package containing utility code for C++.''; license = with lib.licenses; [ asl20 bsd3 ]; }; }