# Copyright 2021 Open Source Robotics Foundation # Distributed under the terms of the BSD license { lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, launch, launch-testing, launch-testing-ament-cmake, opencv3, rclcpp, rmw-implementation-cmake, sensor-msgs, std-msgs }: buildRosPackage { pname = "ros-foxy-intra-process-demo"; version = "0.9.3-r1"; src = fetchurl { url = "https://github.com/ros2-gbp/demos-release/archive/release/foxy/intra_process_demo/0.9.3-1.tar.gz"; name = "0.9.3-1.tar.gz"; sha256 = "9cbc836e7d71be3c9d7a89feeb33d24eeee92d4da6dd493ea4834ab3eb060f8d"; }; buildType = "ament_cmake"; buildInputs = [ std-msgs ]; checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing launch-testing-ament-cmake rmw-implementation-cmake ]; propagatedBuildInputs = [ opencv3 rclcpp sensor-msgs ]; nativeBuildInputs = [ ament-cmake ]; meta = { description = ''Demonstrations of intra process communication.''; license = with lib.licenses; [ asl20 ]; }; }