mediamtx: 1.13.1 -> 1.14.0 (#434010)

This commit is contained in:
Franz Pletz 2025-08-18 21:43:13 +02:00 committed by GitHub
commit 3775f41200
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,37 +8,39 @@
let
hlsJs = fetchurl {
url = "https://cdn.jsdelivr.net/npm/hls.js@v1.6.6/dist/hls.min.js";
hash = "sha256-/h3dYaJYJLB1VfHXjr2sqjCqZ+c+ngKhEYgmZAgsRlE=";
url = "https://cdn.jsdelivr.net/npm/hls.js@v1.6.9/dist/hls.min.js";
hash = "sha256-GObcOPuwxxMg0WOtl5BahSg9A3ds1IcCP+DPGZ8c27I=";
};
in
buildGoModule (finalAttrs: {
pname = "mediamtx";
# check for hls.js version updates in internal/servers/hls/hlsjsdownloader/VERSION
version = "1.13.1";
version = "1.14.0";
src = fetchFromGitHub {
owner = "bluenviron";
repo = "mediamtx";
tag = "v${finalAttrs.version}";
hash = "sha256-tTyrwGePtRj+2TRO1uVp2qxwyLF7ZyXzNLuQqDVlMf8=";
hash = "sha256-I1oKzovSv6hf2/lr2E5pRSqHV/pVoskNwn+gHRz8yv8=";
};
vendorHash = "sha256-6QJVnARlN3ySLE59LTtOaUfKe88zKJPjnjhSNH6OnwY=";
vendorHash = "sha256-5wSdbg7EAdvCUfIKxuX1aGihzHcwFM6Fiu/3eU1dMEY=";
postPatch = ''
cp ${hlsJs} internal/servers/hls/hls.min.js
echo "v${finalAttrs.version}" > internal/core/VERSION
# disable binary-only rpi camera support
substituteInPlace internal/staticsources/rpicamera/camera_disabled.go \
substituteInPlace internal/staticsources/rpicamera/camera_other.go \
--replace-fail '!linux || (!arm && !arm64)' 'linux || !linux'
substituteInPlace internal/staticsources/rpicamera/{camera,params_serialize,pipe}.go \
substituteInPlace internal/staticsources/rpicamera/{params_serialize,pipe}.go \
--replace-fail '(linux && arm) || (linux && arm64)' 'linux && !linux'
substituteInPlace internal/staticsources/rpicamera/camera_32.go \
substituteInPlace internal/staticsources/rpicamera/camera_arm32_.go \
--replace-fail 'linux && arm' 'linux && !linux'
substituteInPlace internal/staticsources/rpicamera/camera_64.go \
substituteInPlace internal/staticsources/rpicamera/camera_arm64_.go \
--replace-fail 'linux && arm64' 'linux && !linux'
substituteInPlace internal/staticsources/rpicamera/camera_arm_.go \
--replace-fail '(linux && arm) || (linux && arm64)' 'linux && !linux'
'';
subPackages = [ "." ];