mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
26 lines
1,009 B
Nix
26 lines
1,009 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, ament-cmake-gmock, ament-cmake-gtest, log4cplus, pkg-config, aws-common, curl, openssl, cmake }:
|
|
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";
|
|
buildInputs = [ boost log4cplus aws-common curl openssl ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-gmock ];
|
|
propagatedBuildInputs = [ boost log4cplus aws-common curl openssl ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
meta = {
|
|
description = ''AWS Kinesis stream management library intended for use with the Kinesis Video Producer SDK'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|