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

25 lines
797 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, asio, cmake, fastcdr, foonathan-memory-vendor, openssl, tinyxml-2 }:
buildRosPackage {
pname = "ros-foxy-fastrtps";
version = "2.0.2-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/fastrtps-release/archive/release/foxy/fastrtps/2.0.2-2.tar.gz";
name = "2.0.2-2.tar.gz";
sha256 = "f503676f1f84b55b0b5d89c90257b93870cc519391b17c2f4642470c72a44e3d";
};
buildType = "cmake";
buildInputs = [ asio ];
propagatedBuildInputs = [ fastcdr foonathan-memory-vendor openssl tinyxml-2 ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Implementation of RTPS standard.'';
license = with lib.licenses; [ asl20 ];
};
}