1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/crystal/examples-rclcpp-minimal-publisher/default.nix
2019-09-05 22:48:11 -04:00

24 lines
775 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, rclcpp, ament-cmake }:
buildRosPackage {
pname = "ros-crystal-examples-rclcpp-minimal-publisher";
version = "0.6.3";
src = fetchurl {
url = https://github.com/ros2-gbp/examples-release/archive/release/crystal/examples_rclcpp_minimal_publisher/0.6.3-0.tar.gz;
sha256 = "55927e19129e0ead3947981d10dceda95d9f9e979d35275ecd0d271f90c642be";
};
buildType = "ament_cmake";
buildInputs = [ std-msgs rclcpp ];
propagatedBuildInputs = [ std-msgs rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Examples of minimal publisher nodes'';
license = with lib.licenses; [ asl20 ];
};
}