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

25 lines
991 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-common, fastrtps, ament-cmake-ros, fastcdr, ament-lint-auto, rcutils, fastrtps-cmake-module, rmw }:
buildRosPackage {
pname = "ros-crystal-rmw-fastrtps-shared-cpp";
version = "0.6.2";
src = fetchurl {
url = https://github.com/ros2-gbp/rmw_fastrtps-release/archive/release/crystal/rmw_fastrtps_shared_cpp/0.6.2-0.tar.gz;
sha256 = "e1621ea08ed960bcb88359e26b1a805dc3c233c5edebe3964e8a4a263cfc6422";
};
buildInputs = [ fastrtps fastcdr rcutils fastrtps-cmake-module rmw ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ fastrtps fastcdr rcutils fastrtps-cmake-module rmw ];
nativeBuildInputs = [ fastrtps-cmake-module ament-cmake-ros ];
meta = {
description = ''Code shared on static and dynamic type support of rmw_fastrtps_cpp.'';
license = with lib.licenses; [ asl20 ];
};
}