mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, buildGoModule
|
|
, nixosTests
|
|
}:
|
|
|
|
let
|
|
hlsJs = fetchurl {
|
|
url = "https://cdn.jsdelivr.net/npm/hls.js@v1.5.8/dist/hls.min.js";
|
|
hash = "sha256-KG8Cm0dAsFbrBHuMi9c+bMocpSvWWK4c9aWH9LGfDY4=";
|
|
};
|
|
in
|
|
buildGoModule rec {
|
|
pname = "mediamtx";
|
|
# check for hls.js version updates in internal/servers/hls/hlsjsdownloader/VERSION
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bluenviron";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-hm6rfO9RF7bsSwxP8tKwiVqEpyQpVK4itWWklbOsKzw=";
|
|
};
|
|
|
|
vendorHash = "sha256-QsRJ4hCtb29cT4QzPqW19bZxH+wMegufSxwdljXbuqs=";
|
|
|
|
postPatch = ''
|
|
cp ${hlsJs} internal/servers/hls/hls.min.js
|
|
'';
|
|
|
|
# Tests need docker
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-X github.com/bluenviron/mediamtx/internal/core.version=v${version}"
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) mediamtx; };
|
|
|
|
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;
|
|
mainProgram = "mediamtx";
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|