nix-ros-overlay/dashing/demo-nodes-cpp-native/default.nix
2019-12-09 23:36:28 -05:00

25 lines
1.1 KiB
Nix

# Copyright 2019 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, launch-testing-ros, rclcpp, rmw-fastrtps-cpp, std-msgs }:
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";
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common launch launch-testing launch-testing-ament-cmake launch-testing-ros ];
propagatedBuildInputs = [ rclcpp rmw-fastrtps-cpp std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''C++ nodes which access the native handles of the rmw implemenation.'';
license = with lib.licenses; [ asl20 ];
};
}