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

38 lines
901 B
Nix
Raw Normal View History

{ lib
2020-10-16 10:03:31 +01:00
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "rtsp-simple-server";
2021-09-14 23:01:29 +01:00
version = "0.17.3";
2020-10-16 10:03:31 +01:00
src = fetchFromGitHub {
owner = "aler9";
repo = pname;
rev = "v${version}";
2021-09-14 23:01:29 +01:00
sha256 = "sha256-9V6yblRnOAZBYuGChjeDyOTWjCCVhdFxljSndEr7GdY=";
2020-10-16 10:03:31 +01:00
};
2021-09-14 23:01:29 +01:00
vendorSha256 = "sha256-lFyRMoI+frzAa7sL8wIzUgzJRrCQjt9Ri8T9pHIpoug=";
2020-10-16 10:03:31 +01:00
# Tests need docker
doCheck = false;
2021-08-26 07:45:51 +01:00
# In the future, we might need to switch to `main.Version`, considering:
# https://github.com/aler9/rtsp-simple-server/issues/503
ldflags = [
"-X github.com/aler9/rtsp-simple-server/internal/core.version=v${version}"
2020-10-16 10:03:31 +01:00
];
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 ];
};
}