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/dashing/rmw-fastrtps-shared-cpp/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, fastcdr, fastrtps, fastrtps-cmake-module, rcpputils, rcutils, rmw }:
buildRosPackage {
pname = "ros-dashing-rmw-fastrtps-shared-cpp";
version = "0.7.8-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/dashing/rmw_fastrtps_shared_cpp/0.7.8-1.tar.gz";
name = "0.7.8-1.tar.gz";
sha256 = "b7cbdf9a57db4fb0afc0bdb720599859e6256c90d4e227551643752b8cce989c";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake fastcdr fastrtps fastrtps-cmake-module rcpputils rcutils rmw ];
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 ];
};
}