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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
765 B
Nix
Raw Normal View History

{ lib
2020-10-16 09:03:31 +00:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "rtsp-simple-server";
2022-08-17 21:09:57 +00:00
version = "0.20.0";
2020-10-16 09:03:31 +00:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2022-08-17 21:09:57 +00:00
hash = "sha256-egmTcEhfBxUw8fOpcft0Sna7zXxAfI264yZECDpWYQE=";
2020-10-16 09:03:31 +00:00
};
2022-08-17 21:09:57 +00:00
vendorSha256 = "sha256-C8+PVFLpFsowjnwMXwyC9TnNcsb8FEPBcWRgtExO7mw=";
2020-10-16 09:03:31 +00:00
# Tests need docker
doCheck = false;
2021-08-26 06:45:51 +00:00
ldflags = [
"-X github.com/aler9/rtsp-simple-server/internal/core.version=v${version}"
2020-10-16 09:03:31 +00:00
];
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 ];
};
}