{ lib , fetchFromGitHub , buildGoModule }: buildGoModule rec { pname = "rtsp-simple-server"; version = "0.15.2"; src = fetchFromGitHub { owner = "aler9"; repo = pname; rev = "v${version}"; sha256 = "sha256-XuyE0gubkE08Qei30/q8fLdX8V7zBsbFsdaiqbXgeI4="; }; vendorSha256 = "sha256-4R2gA9QwfyBNDasRuDawDFEmXu31yGuZUQZS6cZL3B0="; # Tests need docker doCheck = false; buildFlagsArray = [ "-ldflags=-X main.Version=${version}" ]; meta = with lib; { description = "Ready-to-use RTSP server and RTSP proxy that allows to read and publish video and audio streams" ; inherit (src.meta) homepage; license = licenses.mit; maintainers = with maintainers; [ doronbehar ]; }; }