mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-24 07:49:53 +03:00
26 lines
1.4 KiB
Nix
26 lines
1.4 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, builtin-interfaces, rosidl-generator-cpp, rosidl-typesupport-c, ament-cmake, rmw-implementation-cmake, ament-cmake-gmock, ament-lint-common, test-msgs, ament-cmake-gtest, rosidl-typesupport-cpp, rosgraph-msgs, rmw-implementation, rcl-yaml-param-parser, rcl-interfaces, ament-cmake-ros, rcl, ament-lint-auto, rmw }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-rclcpp";
|
|
version = "0.7.11-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rclcpp-release/archive/release/dashing/rclcpp/0.7.11-1.tar.gz";
|
|
name = "0.7.11-1.tar.gz";
|
|
sha256 = "9170c7b162643ec8ad7ac1f34e8f05bceb07d1d453075e34961322896963ae78";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ rosidl-generator-cpp builtin-interfaces rosidl-typesupport-c rosidl-typesupport-cpp rosgraph-msgs rmw-implementation rcl-yaml-param-parser rcl-interfaces rcl ];
|
|
checkInputs = [ rmw-implementation-cmake ament-lint-common ament-cmake-gmock test-msgs ament-cmake-gtest ament-lint-auto rmw ];
|
|
propagatedBuildInputs = [ rosidl-generator-cpp builtin-interfaces rosidl-typesupport-c ament-cmake rosidl-typesupport-cpp rosgraph-msgs rmw-implementation rcl-yaml-param-parser rcl-interfaces rcl rmw ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''The ROS client library in C++.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|