nixpkgs/pkgs/servers/rtsp-simple-server/default.nix

36 lines
738 B
Nix
Raw Normal View History

{ lib
2020-10-16 09:03:31 +00:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "rtsp-simple-server";
2021-04-05 04:21:25 +00:00
version = "0.15.3";
2020-10-16 09:03:31 +00:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2021-04-05 04:21:25 +00:00
sha256 = "sha256-eY3XtGmHp7TM+lXC9tdd51x7sLuuZfBDJxTZ79Ye0Qs=";
2020-10-16 09:03:31 +00:00
};
2021-04-05 04:21:25 +00:00
vendorSha256 = "sha256-SiWcOI1XxrwwTAzp8HC5zOO5e2oSWBMFRYsW2RwPA5I=";
2020-10-16 09:03:31 +00:00
# Tests need docker
doCheck = false;
buildFlagsArray = [
"-ldflags=-X main.Version=${version}"
];
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; [ doronbehar ];
};
}