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-11 15:02:17 +00:00
version = "0.15.4";
2020-10-16 09:03:31 +00:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2021-04-11 15:02:17 +00:00
sha256 = "sha256-6XdX4HEjDRt9WtqyHIv/NLt7IytNDeJLgCeTHTGybRI=";
2020-10-16 09:03:31 +00:00
};
2021-04-11 15:02:17 +00:00
vendorSha256 = "sha256-T5LWbxYsKnG5eaYLR/rms6+2DXv2lV9o39BvF7HapZY=";
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 ];
};
}