2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-10-16 10:03:31 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoModule
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "rtsp-simple-server";
|
2022-10-26 04:41:37 +01:00
|
|
|
version = "0.20.1";
|
2020-10-16 10:03:31 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aler9";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-10-26 04:41:37 +01:00
|
|
|
hash = "sha256-9tstGrl+5OzHUtoY1OREPT0zTDmUg8JkyzUzraLdAFA=";
|
2020-10-16 10:03:31 +01:00
|
|
|
};
|
|
|
|
|
2022-10-26 04:41:37 +01:00
|
|
|
vendorSha256 = "sha256-tmIM7X6sdeA6h4wAGb1RRgkqIjpcgVNq4oMwHZIB4W8=";
|
2020-10-16 10:03:31 +01:00
|
|
|
|
|
|
|
# Tests need docker
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [
|
|
|
|
"-X github.com/aler9/rtsp-simple-server/internal/core.version=v${version}"
|
2020-10-16 10:03:31 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-16 10:03:31 +01: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; [ doronbehar ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|