1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/rosidl-runtime-c/default.nix
2023-05-02 16:50:22 -04:00

26 lines
1.1 KiB
Nix

# Copyright 2023 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-rolling-rosidl-runtime-c";
version = "4.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/rolling/rosidl_runtime_c/4.1.0-1.tar.gz";
name = "4.1.0-1.tar.gz";
sha256 = "985e124d85f93c0c8ceb6dee395b2fa3577e311d85e1e8df91655ee9fd08bbf1";
};
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 ];
};
}