3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/rtsp-simple-server/default.nix

36 lines
738 B
Nix
Raw Normal View History

{ lib
2020-10-16 10:03:31 +01:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "rtsp-simple-server";
2021-03-13 12:39:53 +00:00
version = "0.15.0";
2020-10-16 10:03:31 +01:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2021-03-13 12:39:53 +00:00
sha256 = "sha256-U0wZ0NrvCQjMLDDjO6Jf6uu5FlHar7Td2zhoU2+MMkM=";
2020-10-16 10:03:31 +01:00
};
2021-03-13 12:39:53 +00:00
vendorSha256 = "sha256-dfAuq4iw3NQ4xaabPv7MQ88CYXgivRBeyvbmJ3SSjbI=";
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 ];
};
}