2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gmock, ament-cmake-gtest, aws-common, boost, cmake, curl, log4cplus, openssl, pkg-config }:
|
2019-09-09 14:55:58 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-kinesis-manager";
|
|
|
|
version = "2.0.1-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/aws-gbp/kinesis_manager-release/archive/release/dashing/kinesis_manager/2.0.1-1.tar.gz";
|
|
|
|
name = "2.0.1-1.tar.gz";
|
|
|
|
sha256 = "b11cdfb73d1bccbfe9eec3bb88192023c32d38e4da417b974bd9cb65564c753e";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2019-12-09 05:16:46 +00:00
|
|
|
checkInputs = [ ament-cmake-gmock ament-cmake-gtest ];
|
2019-12-09 23:36:28 -05:00
|
|
|
propagatedBuildInputs = [ aws-common boost curl log4cplus openssl ];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-09-09 14:55:58 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''AWS Kinesis stream management library intended for use with the Kinesis Video Producer SDK'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|