mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
c7c2ee938a
https://github.com/AlexxIT/go2rtc/releases/tag/v1.6.1 https://github.com/AlexxIT/go2rtc/releases/tag/v1.6.2
40 lines
862 B
Nix
40 lines
862 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "go2rtc";
|
|
version = "1.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AlexxIT";
|
|
repo = "go2rtc";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-LKaVspv9R2N7og+3gb/vZuiWzWt1w+LEQ1Sk737+O7c=";
|
|
};
|
|
|
|
vendorHash = "sha256-C2bRSzLp86aMF3UIGJ2G5WXvUaLjyhqzPsQkDSI0qb0=";
|
|
|
|
buildFlagArrays = [
|
|
"-trimpath"
|
|
];
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
doCheck = false; # tests fail
|
|
|
|
meta = with lib; {
|
|
description = "Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MJPEG, HomeKit, FFmpeg, etc.";
|
|
homepage = "https://github.com/AlexxIT/go2rtc";
|
|
changelog = "https://github.com/AlexxIT/go2rtc/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|