1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/dashing/examples-rclcpp-minimal-service/default.nix
2019-12-09 23:36:28 -05:00

24 lines
800 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, example-interfaces, rclcpp }:
buildRosPackage {
pname = "ros-dashing-examples-rclcpp-minimal-service";
version = "0.7.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/dashing/examples_rclcpp_minimal_service/0.7.4-1.tar.gz";
name = "0.7.4-1.tar.gz";
sha256 = "d7b9ab4b27c24fcc7e4df0cf1fdc99d6ce3514efbf045c4ff3883cc6842b9768";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ example-interfaces rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''A minimal service server which adds two numbers'';
license = with lib.licenses; [ asl20 ];
};
}