1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/aws-common/default.nix

27 lines
881 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cmake, curl, gtest, openssl, ros-environment, util-linux, zlib }:
buildRosPackage {
pname = "ros-melodic-aws-common";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/aws-gbp/aws_common-release/archive/release/melodic/aws_common/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "ca6b356a24bbfc7851da14716f3f90cdc751ce5d7620f5eda2401cdfebdddbfe";
};
buildType = "cmake";
buildInputs = [ ros-environment ];
checkInputs = [ gtest ];
propagatedBuildInputs = [ curl openssl util-linux zlib ];
nativeBuildInputs = [ catkin cmake ];
meta = {
description = ''Common AWS SDK utilities, intended for use by ROS packages using the AWS SDK'';
license = with lib.licenses; [ asl20 ];
};
}