2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, performance-test-fixture, rosidl-runtime-c }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-rosidl-runtime-cpp";
|
2024-07-26 13:34:25 +00:00
|
|
|
version = "4.6.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-07-26 13:34:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/jazzy/rosidl_runtime_cpp/4.6.3-1.tar.gz";
|
|
|
|
name = "4.6.3-1.tar.gz";
|
|
|
|
sha256 = "809faf315ea118023788957df4d4449a191c9e2a1416d24b6e45d159f9f49e01";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common performance-test-fixture ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake rosidl-runtime-c ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Provides definitions and templated functions for getting and working with rosidl typesupport types in C++.";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|