ustreamer 5.48 -> 6.4 https://repology.org/project/ustreamer/versions attrpath: ustreamer Checking auto update branch... No auto update branch exists Old version 5.48" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, libbsd, libevent, libjpeg }: stdenv.mkDerivation rec { pname = "ustreamer"; version = "6.4"; src = fetchFromGitHub { owner = "pikvm"; repo = "ustreamer"; rev = "v${version}"; hash = "sha256-pTfct+nki1t7ltCUnxSyOkDocSr2pkoqOldkECtNfDU="; }; buildInputs = [ libbsd libevent libjpeg ]; makeFlags = [ "PREFIX=${placeholder "out"}" ]; 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; }; }