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/kinetic/image-stream/default.nix
2019-04-06 20:59:50 -04:00

23 lines
781 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cv-bridge, rospy, rosweb, opencv3 }:
buildRosPackage {
pname = "ros-kinetic-image-stream";
version = "1.0.7";
src = fetchurl {
url = https://github.com/UNR-RoboticsResearchLab/web_interface-release/archive/release/kinetic/image_stream/1.0.7-0.tar.gz;
sha256 = "57c40cb2935de0812d1e5925bdd06a45dae48ce97f28e9eeaa534290c0e4029c";
};
buildInputs = [ rosweb cv-bridge opencv3 rospy ];
propagatedBuildInputs = [ rosweb cv-bridge opencv3 rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''rosweb plugin to serve images as streams (MJPEG, Theora, FLV, etc)'';
#license = lib.licenses.BSD;
};
}