mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 02:04:49 +03:00
regenerate all distros, Mon Jun 19 17:15:22 2023
This commit is contained in:
parent
7a2b545ecb
commit
381164fc34
2124 changed files with 35727 additions and 4192 deletions
26
distros/iron/action-tutorials-cpp/default.nix
Normal file
26
distros/iron/action-tutorials-cpp/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
# Copyright 2023 Open Source Robotics Foundation
|
||||
# Distributed under the terms of the BSD license
|
||||
|
||||
{ lib, buildRosPackage, fetchurl, action-tutorials-interfaces, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, rclcpp-action, rclcpp-components }:
|
||||
buildRosPackage {
|
||||
pname = "ros-iron-action-tutorials-cpp";
|
||||
version = "0.27.1-r1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ros2-gbp/demos-release/archive/release/iron/action_tutorials_cpp/0.27.1-1.tar.gz";
|
||||
name = "0.27.1-1.tar.gz";
|
||||
sha256 = "00be751c36177ed2099dce9d4008e97266fbb5210e3ca54406750928dfa7e80d";
|
||||
};
|
||||
|
||||
buildType = "ament_cmake";
|
||||
buildInputs = [ ament-cmake ];
|
||||
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||||
propagatedBuildInputs = [ action-tutorials-interfaces rclcpp rclcpp-action rclcpp-components ];
|
||||
nativeBuildInputs = [ ament-cmake ];
|
||||
|
||||
meta = {
|
||||
description = ''C++ action tutorial cpp code'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue