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/galactic/rosidl-runtime-c/default.nix

26 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2021 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-galactic-rosidl-runtime-c";
version = "2.2.1-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/galactic/rosidl_runtime_c/2.2.1-2.tar.gz";
name = "2.2.1-2.tar.gz";
sha256 = "9586b262cfbaba9c558b97f8faeaf473f530fc343a140c3541c35e10bed70422";
};
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 ];
};
}