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/rmw-fastrtps-shared-cpp/default.nix

26 lines
1.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, fastcdr, fastrtps, fastrtps-cmake-module, osrf-testing-tools-cpp, rcpputils, rcutils, rmw, rmw-dds-common }:
buildRosPackage {
pname = "ros-foxy-rmw-fastrtps-shared-cpp";
version = "1.2.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/foxy/rmw_fastrtps_shared_cpp/1.2.5-1.tar.gz";
name = "1.2.5-1.tar.gz";
sha256 = "96dea9e2e38c8b78b2a0b872384346e78a4cede5708d49f80f405cf151772d95";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common osrf-testing-tools-cpp ];
propagatedBuildInputs = [ ament-cmake fastcdr fastrtps fastrtps-cmake-module rcpputils rcutils rmw rmw-dds-common ];
nativeBuildInputs = [ ament-cmake-ros fastrtps-cmake-module ];
meta = {
description = ''Code shared on static and dynamic type support of rmw_fastrtps_cpp.'';
license = with lib.licenses; [ asl20 ];
};
}