rtsp-simple-server: init at 0.10.0
This commit is contained in:
parent
0826f2efae
commit
0989b93cf8
2 changed files with 37 additions and 0 deletions
35
pkgs/servers/rtsp-simple-server/default.nix
Normal file
35
pkgs/servers/rtsp-simple-server/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildGoModule
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "rtsp-simple-server";
|
||||||
|
version = "0.10.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aler9";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "rnUmPyT9jAqm7Vf2TokgRGPTn7rTBUvrpJU21IopFsM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "jAWDz/TclfCKQR/Gh99zSiGAsraciNU+yzFe5DGTeQI=";
|
||||||
|
|
||||||
|
# Tests need docker
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
buildFlagsArray = [
|
||||||
|
"-ldflags=-X main.Version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -18527,6 +18527,8 @@ in
|
||||||
|
|
||||||
roccat-tools = callPackage ../os-specific/linux/roccat-tools { };
|
roccat-tools = callPackage ../os-specific/linux/roccat-tools { };
|
||||||
|
|
||||||
|
rtsp-simple-server = callPackage ../servers/rtsp-simple-server { };
|
||||||
|
|
||||||
rtkit = callPackage ../os-specific/linux/rtkit { };
|
rtkit = callPackage ../os-specific/linux/rtkit { };
|
||||||
|
|
||||||
rt5677-firmware = callPackage ../os-specific/linux/firmware/rt5677 { };
|
rt5677-firmware = callPackage ../os-specific/linux/firmware/rt5677 { };
|
||||||
|
|
Loading…
Reference in a new issue