35 lines
737 B
Nix
35 lines
737 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mediamtx";
|
|
version = "0.23.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aler9";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-LGD6VL5guUqBFjN36KOTVyWRupCuoch3yhW8SabkihY=";
|
|
};
|
|
|
|
vendorHash = "sha256-5G557by0nqE3a9R1/TZZ2I+4KX5J6dqzwc1pP95mGAg=";
|
|
|
|
# Tests need docker
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-X github.com/bluenviron/mediamtx/internal/core.version=v${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; [ ];
|
|
};
|
|
|
|
}
|