mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-18 05:18:39 +03:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake, ament-lint-common, launch-testing, launch, launch-testing-ament-cmake, rclcpp, std-msgs, rmw-fastrtps-cpp, ament-lint-auto, launch-testing-ros }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-demo-nodes-cpp-native";
|
|
version = "0.7.9-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/demo_nodes_cpp_native/0.7.9-1.tar.gz";
|
|
name = "0.7.9-1.tar.gz";
|
|
sha256 = "a141463954e5adf653c35d14161bc28ac2cb71a34d32300053ac01d87c652adb";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ std-msgs rmw-fastrtps-cpp rclcpp ];
|
|
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing launch launch-testing-ament-cmake ament-lint-auto launch-testing-ros ];
|
|
propagatedBuildInputs = [ std-msgs rmw-fastrtps-cpp rclcpp ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''C++ nodes which access the native handles of the rmw implemenation.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|