mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 22:28:39 +03:00
26 lines
893 B
Nix
26 lines
893 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, std-msgs, rclcpp, rclcpp-components, ament-cmake }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-examples-rclcpp-minimal-composition";
|
|
version = "0.7.4-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/dashing/examples_rclcpp_minimal_composition/0.7.4-1.tar.gz";
|
|
name = "0.7.4-1.tar.gz";
|
|
sha256 = "117b67959ab9139b0e6880331ae6c957813a81b7aac0ad624b7e5048cde22239";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ std-msgs rclcpp-components rclcpp ];
|
|
propagatedBuildInputs = [ std-msgs rclcpp-components rclcpp ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Minimalist examples of composing nodes in the same
|
|
process'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|