1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/rosidl-runtime-c/default.nix

25 lines
945 B
Nix

# 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-foxy-rosidl-runtime-c";
version = "1.2.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl-release/archive/release/foxy/rosidl_runtime_c/1.2.1-1.tar.gz";
name = "1.2.1-1.tar.gz";
sha256 = "ad58225d2e216bca2a564dcc330c3c98f8e0d7c459bf66faa4bad682e3bc2197";
};
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 = ''Generate the ROS interfaces in C.'';
license = with lib.licenses; [ asl20 ];
};
}