nixpkgs/pkgs/servers/mediamtx/default.nix

36 lines
732 B
Nix
Raw Normal View History

{ lib
2020-10-16 09:03:31 +00:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "mediamtx";
2023-04-27 23:58:55 +00:00
version = "0.22.2";
2020-10-16 09:03:31 +00:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2023-04-27 23:58:55 +00:00
hash = "sha256-NGUEDOME6jzckHrzOboQr5KrZ8Z4iLCTHGCRGhbQThU=";
2020-10-16 09:03:31 +00:00
};
2023-04-27 23:58:55 +00:00
vendorHash = "sha256-7+0+F1dW70GXjOzJ/+KTFZPp8o1w2wDvQlX0Zrrx7qU=";
2020-10-16 09:03:31 +00:00
# Tests need docker
doCheck = false;
2021-08-26 06:45:51 +00:00
ldflags = [
"-X github.com/aler9/mediamtx/internal/core.version=v${version}"
2020-10-16 09:03:31 +00:00
];
meta = with lib; {
2020-10-16 09:03:31 +00: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;
maintainers = with maintainers; [ ];
2020-10-16 09:03:31 +00:00
};
}