1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/eloquent/examples-rclcpp-minimal-client/default.nix

25 lines
879 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, example-interfaces, rclcpp }:
buildRosPackage {
pname = "ros-eloquent-examples-rclcpp-minimal-client";
version = "0.8.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/eloquent/examples_rclcpp_minimal_client/0.8.3-1.tar.gz";
name = "0.8.3-1.tar.gz";
sha256 = "0b7722f46596c90d0b6a6a4c9096edd8569b2d578c7ca1347dca467e7312b012";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ example-interfaces rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Examples of minimal service clients'';
license = with lib.licenses; [ asl20 ];
};
}