nixpkgs/pkgs/servers/mediamtx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
846 B
Nix
Raw Normal View History

{ lib
2020-10-16 11:03:31 +02:00
, fetchFromGitHub
, buildGoModule
2023-08-10 20:43:26 +02:00
, nixosTests
2020-10-16 11:03:31 +02:00
}:
buildGoModule rec {
pname = "mediamtx";
2024-02-05 07:58:39 +01:00
version = "1.5.1";
2020-10-16 11:03:31 +02:00
src = fetchFromGitHub {
2023-08-10 20:14:57 +02:00
owner = "bluenviron";
2020-10-16 11:03:31 +02:00
repo = pname;
rev = "v${version}";
2024-02-05 07:58:39 +01:00
hash = "sha256-FtMjcPeXLkITuGFwjHQ2Tu5pK3Hb/3L9SmcJaJFkP9k=";
2020-10-16 11:03:31 +02:00
};
2024-02-05 07:58:39 +01:00
vendorHash = "sha256-nchBsmk5hAqBPXk5aUSf/H46PdCg8JfGbeV4VBXBs+E=";
2020-10-16 11:03:31 +02:00
# Tests need docker
doCheck = false;
2021-08-26 08:45:51 +02:00
ldflags = [
2023-05-22 23:19:41 +02:00
"-X github.com/bluenviron/mediamtx/internal/core.version=v${version}"
2020-10-16 11:03:31 +02:00
];
2023-08-10 20:43:26 +02:00
passthru.tests = { inherit (nixosTests) mediamtx; };
meta = with lib; {
2020-10-16 11:03:31 +02:00
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;
2023-08-10 20:14:57 +02:00
mainProgram = "mediamtx";
maintainers = with maintainers; [ fpletz ];
2020-10-16 11:03:31 +02:00
};
}