mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
srtrelay: init at 2021-07-28
This commit is contained in:
parent
6e12183308
commit
bbacb162cb
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/video/srtrelay/default.nix
Normal file
25
pkgs/applications/video/srtrelay/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub, srt, ffmpeg }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "srtrelay-unstable";
|
||||
version = "2021-07-28";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "voc";
|
||||
repo = "srtrelay";
|
||||
rev = "c4f02ff2e9637b01a0679b29e5a76f4521eeeef3";
|
||||
sha256 = "06zbl97bjjyv51zp27qk37ffpbh1ylm9bsr0s5qlyd73pyavcj1g";
|
||||
};
|
||||
|
||||
vendorSha256 = "1pdpb0my7gdvjjkka6jhj19b9nx575k6117hg536b106ij2n4zd2";
|
||||
|
||||
buildInputs = [ srt ];
|
||||
checkInputs = [ ffmpeg ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Streaming-Relay for the SRT-protocol";
|
||||
homepage = "https://github.com/voc/srtrelay";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
};
|
||||
}
|
|
@ -9048,6 +9048,8 @@ in
|
|||
|
||||
srt-to-vtt-cl = callPackage ../tools/cd-dvd/srt-to-vtt-cl { };
|
||||
|
||||
srtrelay = callPackage ../applications/video/srtrelay { };
|
||||
|
||||
sourcehut = callPackage ../applications/version-management/sourcehut { };
|
||||
|
||||
sshfs-fuse = callPackage ../tools/filesystems/sshfs-fuse { };
|
||||
|
|
Loading…
Reference in a new issue