about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/mediamtx/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/mediamtx/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/mediamtx/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/mediamtx/default.nix b/nixpkgs/pkgs/servers/mediamtx/default.nix
new file mode 100644
index 000000000000..c1385b98b6a5
--- /dev/null
+++ b/nixpkgs/pkgs/servers/mediamtx/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, fetchFromGitHub
+, buildGoModule
+, nixosTests
+}:
+
+buildGoModule rec {
+  pname = "mediamtx";
+  version = "1.5.1";
+
+  src = fetchFromGitHub {
+    owner = "bluenviron";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-FtMjcPeXLkITuGFwjHQ2Tu5pK3Hb/3L9SmcJaJFkP9k=";
+  };
+
+  vendorHash = "sha256-nchBsmk5hAqBPXk5aUSf/H46PdCg8JfGbeV4VBXBs+E=";
+
+  # 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 ];
+  };
+}