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-ros, ament-lint-auto, ament-lint-common, performance-test-fixture, rcutils, rosidl-typesupport-interface }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rosidl-runtime-c";
|
2023-07-14 13:38:16 +00:00
|
|
|
version = "4.3.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-14 13:38:16 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_runtime_c/4.3.0-1.tar.gz";
|
|
|
|
name = "4.3.0-1.tar.gz";
|
|
|
|
sha256 = "0131721072b81d95a94168cf47004644d7ff2b183e2bb246b2baf8ac3c3b8da2";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-ros ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common performance-test-fixture ];
|
|
|
|
propagatedBuildInputs = [ ament-cmake rcutils rosidl-typesupport-interface ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-ros ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Provides definitions, initialization and finalization functions, and macros for getting and working with rosidl typesupport types in C.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|