mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
881 B
Nix
26 lines
881 B
Nix
|
|
# 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 ];
|
|
};
|
|
}
|