From 902905a45b5f3b2aa2771bf5c59df1fcfe003778 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Sat, 1 Mar 2025 14:13:06 -0500 Subject: [PATCH] rolling: remove fastrtps Renamed to fastdds --- distros/rolling/fastrtps/default.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 distros/rolling/fastrtps/default.nix diff --git a/distros/rolling/fastrtps/default.nix b/distros/rolling/fastrtps/default.nix deleted file mode 100644 index 1b3f74d1ca..0000000000 --- a/distros/rolling/fastrtps/default.nix +++ /dev/null @@ -1,25 +0,0 @@ - -# Copyright 2025 Open Source Robotics Foundation -# Distributed under the terms of the BSD license - -{ lib, buildRosPackage, fetchurl, asio, cmake, fastcdr, foonathan-memory-vendor, openssl, python3, tinyxml-2 }: -buildRosPackage { - pname = "ros-rolling-fastrtps"; - version = "2.14.4-r1"; - - src = fetchurl { - url = "https://github.com/ros2-gbp/fastdds-release/archive/release/rolling/fastrtps/2.14.4-1.tar.gz"; - name = "2.14.4-1.tar.gz"; - sha256 = "664cb833db22e0ca4d868037fca0b0378c7030c8b3bea7a8b679d31d4ecc9250"; - }; - - buildType = "cmake"; - buildInputs = [ asio cmake ]; - propagatedBuildInputs = [ fastcdr foonathan-memory-vendor openssl python3 tinyxml-2 ]; - nativeBuildInputs = [ cmake ]; - - meta = { - description = "*eprosima Fast DDS* (formerly Fast RTPS) is a C++ implementation of the DDS (Data Distribution Service) standard of the OMG (Object Management Group). eProsima Fast DDS implements the RTPS (Real Time Publish Subscribe) protocol, which provides publisher-subscriber communications over unreliable transports such as UDP, as defined and maintained by the Object Management Group (OMG) consortium. RTPS is also the wire interoperability protocol defined for the Data Distribution Service (DDS) standard. *eProsima Fast DDS* expose an API to access directly the RTPS protocol, giving the user full access to the protocol internals."; - license = with lib.licenses; [ asl20 ]; - }; -}