mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
31 lines
773 B
Nix
31 lines
773 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vdo-ninja";
|
|
version = "28.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "steveseguin";
|
|
repo = "vdo.ninja";
|
|
rev = "v${version}";
|
|
hash = "sha256-XkZ+ImjeLk+1Byl+ZFZ1l1Zy8vonfKK1GWhq8q7eDDo=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/www
|
|
mv * $out/share/www
|
|
'';
|
|
|
|
meta = {
|
|
description = "VDO.Ninja is a powerful tool that lets you bring remote video feeds into OBS or other studio software via WebRTC";
|
|
homepage = "https://github.com/steveseguin/vdo.ninja";
|
|
license = lib.licenses.agpl3Plus; # FIXME: nix-init did not find a license
|
|
maintainers = with lib.maintainers; [ traxys ];
|
|
mainProgram = "vdo-ninja";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|