1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/aws-ros2-common/default.nix

26 lines
827 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, aws-common, rclcpp }:
buildRosPackage {
pname = "ros-dashing-aws-ros2-common";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/aws_ros2_common-release/archive/release/dashing/aws_ros2_common/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "7fa53146b92ceb4ed583d97920f0a77ed73fba95b201017ea99d355e1a254d87";
};
buildType = "ament_cmake";
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ aws-common rclcpp ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Common utilities for ROS2 nodes using Amazon Web Services.'';
license = with lib.licenses; [ asl20 ];
};
}