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

36 lines
740 B
Nix
Raw Normal View History

{ lib
2020-10-16 10:03:31 +01:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "rtsp-simple-server";
2020-12-01 07:39:48 +00:00
version = "0.12.2";
2020-10-16 10:03:31 +01:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2020-12-01 07:39:48 +00:00
sha256 = "094brxiiapm7402q0ysaha2xk3wymc2kz8vqisjyiswz7wf4wsx0";
2020-10-16 10:03:31 +01:00
};
2020-12-01 07:39:48 +00:00
vendorSha256 = "007dyw825jsfma7sq5llxllhrzbkhqxr985s1nhg5cdd803gz42p";
2020-10-16 10:03:31 +01:00
# Tests need docker
doCheck = false;
buildFlagsArray = [
"-ldflags=-X main.Version=${version}"
];
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 ];
};
}