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/distros/eloquent/intra-process-demo/default.nix

27 lines
1.1 KiB
Nix
Raw Normal View History

# Copyright 2020 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-eloquent-intra-process-demo";
version = "0.8.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/eloquent/intra_process_demo/0.8.4-1.tar.gz";
name = "0.8.4-1.tar.gz";
sha256 = "51a61a88429c28e2f5e3a43735dadc7e9eeaa8b1703d734081edd18ff9be6360";
};
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 ];
};
}