1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/dashing/fastrtps-cmake-module/default.nix

25 lines
805 B
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-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-dashing-fastrtps-cmake-module";
version = "0.7.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rosidl_typesupport_fastrtps-release/archive/release/dashing/fastrtps_cmake_module/0.7.2-1.tar.gz";
name = "0.7.2-1.tar.gz";
sha256 = "5603fa79f0d9fa3580af1c6e5ef61944220b98c164069bedfafc85a76e9cba25";
};
buildType = "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 ];
};
}