fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libbsd, libevent, libjpeg, libdrm, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ustreamer";
|
|
version = "6.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pikvm";
|
|
repo = "ustreamer";
|
|
rev = "v${version}";
|
|
hash = "sha256-iaCgPHgklk7tbhJhQmyjKggb1bMWBD+Zurgfk9sCQ3E=";
|
|
};
|
|
|
|
buildInputs = [ libbsd libevent libjpeg libdrm ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
"WITH_V4P=1"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pikvm/ustreamer";
|
|
description = "Lightweight and fast MJPG-HTTP streamer";
|
|
longDescription = ''
|
|
µStreamer is a lightweight and very quick server to stream MJPG video from
|
|
any V4L2 device to the net. All new browsers have native support of this
|
|
video format, as well as most video players such as mplayer, VLC etc.
|
|
µStreamer is a part of the Pi-KVM project designed to stream VGA and HDMI
|
|
screencast hardware data with the highest resolution and FPS possible.
|
|
'';
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ tfc ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|