mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
1 KiB
Nix
25 lines
1 KiB
Nix
|
|
# Copyright 2022 Open Source Robotics Foundation
|
|
# 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-humble-rosidl-runtime-c";
|
|
version = "3.1.3-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/humble/rosidl_runtime_c/3.1.3-2.tar.gz";
|
|
name = "3.1.3-2.tar.gz";
|
|
sha256 = "067a7e4a24b621222be98339e50eb318dc6cce8d98fd2f406b7aaffd6f799792";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
checkInputs = [ ament-lint-auto ament-lint-common performance-test-fixture ];
|
|
propagatedBuildInputs = [ ament-cmake rcutils rosidl-typesupport-interface ];
|
|
nativeBuildInputs = [ 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 ];
|
|
};
|
|
}
|