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/melodic/h264-encoder-core/default.nix

24 lines
723 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, aws-common, cmake, ffmpeg }:
buildRosPackage {
pname = "ros-melodic-h264-encoder-core";
version = "2.0.0";
src = fetchurl {
url = https://github.com/aws-gbp/h264_encoder_core-release/archive/release/melodic/h264_encoder_core/2.0.0-0.tar.gz;
sha256 = "67e0ef7ef6d8f71198043fa55ce97ec74cd53cc1c9caf3e21f04dc58df7c7fb5";
};
buildInputs = [ aws-common ffmpeg ];
propagatedBuildInputs = [ aws-common ffmpeg ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Common base code for ROS1/ROS2 H264 encoder node'';
#license = lib.licenses.LGPLv2.1;
};
}