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/iron/fastrtps-cmake-module/default.nix

25 lines
830 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-iron-fastrtps-cmake-module";
version = "3.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl_typesupport_fastrtps-release/archive/release/iron/fastrtps_cmake_module/3.0.2-1.tar.gz";
name = "3.0.2-1.tar.gz";
sha256 = "1c4a05159a240769159d3a22d754f54fd84c5548882bf56b4864b74b53e3d09d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Provide CMake module to find eProsima FastRTPS.";
license = with lib.licenses; [ asl20 ];
};
}