mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
Merge pull request #319447 from r-ryantm/auto-update/mediamtx
mediamtx: 1.8.2 -> 1.8.3
This commit is contained in:
commit
68cda98160
@ -1,29 +1,30 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, fetchurl
|
||||
, buildGoModule
|
||||
, nixosTests
|
||||
{
|
||||
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=";
|
||||
url = "https://cdn.jsdelivr.net/npm/hls.js@v1.5.11/dist/hls.min.js";
|
||||
hash = "sha256-N10eCJk75KlKpHVXtwgC7vBDrU5b7ZQng9o/QK93m2w=";
|
||||
};
|
||||
in
|
||||
buildGoModule rec {
|
||||
pname = "mediamtx";
|
||||
# check for hls.js version updates in internal/servers/hls/hlsjsdownloader/VERSION
|
||||
version = "1.8.2";
|
||||
version = "1.8.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bluenviron";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-hm6rfO9RF7bsSwxP8tKwiVqEpyQpVK4itWWklbOsKzw=";
|
||||
hash = "sha256-/r5N9RSlYH6xM+JyETuTQWu0YTvaShI6APi8ibpP7Zg=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-QsRJ4hCtb29cT4QzPqW19bZxH+wMegufSxwdljXbuqs=";
|
||||
vendorHash = "sha256-/TgSTXA6SOCfm/wtjJBtyIg4Fo0moJyC640zoIOQ4Fo=";
|
||||
|
||||
postPatch = ''
|
||||
cp ${hlsJs} internal/servers/hls/hls.min.js
|
||||
@ -32,16 +33,14 @@ buildGoModule rec {
|
||||
# Tests need docker
|
||||
doCheck = false;
|
||||
|
||||
ldflags = [
|
||||
"-X github.com/bluenviron/mediamtx/internal/core.version=v${version}"
|
||||
];
|
||||
ldflags = [ "-X github.com/bluenviron/mediamtx/internal/core.version=v${version}" ];
|
||||
|
||||
passthru.tests = { inherit (nixosTests) mediamtx; };
|
||||
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"
|
||||
;
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user