2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# 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";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "2.7.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-06-19 17:15:23 -04:00
|
|
|
url = "https://github.com/ros2-gbp/rcpputils-release/archive/release/rolling/rcpputils/2.7.1-1.tar.gz";
|
|
|
|
name = "2.7.1-1.tar.gz";
|
|
|
|
sha256 = "b7c3c8c9e3d716a2354d7f3f86050c1202ada42645de3723b066d488444f95b2";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|