gtuber: init at 0-unstable-2024-10-11

This commit is contained in:
Chuang Zhu 2024-10-22 19:44:47 +08:00 committed by John Titor
parent 29dccd64f5
commit e4f41d5598
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
gobject-introspection,
vala,
glib,
libsoup_3,
json-glib,
libxml2,
gst_all_1,
unstableGitUpdater,
}:
stdenv.mkDerivation {
pname = "gtuber";
version = "0-unstable-2024-10-11";
src = fetchFromGitHub {
owner = "Rafostar";
repo = "gtuber";
rev = "468bf02a8adcf69b1bd6dd7b5dbcdcc0bfdb6922";
hash = "sha256-pEiHqcxkrxZRD9xW/R9DNDdp5foxaHK2SAuzmPNegaY=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection # For g-ir-scanner
vala # For vapigen
];
buildInputs = [
glib
libsoup_3
json-glib
libxml2
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
];
passthru = {
updateScript = unstableGitUpdater { };
};
meta = {
description = "GStreamer plugin for streaming videos from websites";
homepage = "https://rafostar.github.io/gtuber/";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ chuangzhu ];
platforms = lib.platforms.unix;
};
}