2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 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";
|
2024-02-09 13:42:10 +00:00
|
|
|
version = "4.5.1-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-02-09 13:42:10 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_runtime_c/4.5.1-1.tar.gz";
|
|
|
|
name = "4.5.1-1.tar.gz";
|
|
|
|
sha256 = "cc49995febae752e7ea55aa21630010b06740733b749c3b1615bfca515a77d34";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|