gtuber: init at 0-unstable-2024-10-11
This commit is contained in:
parent
29dccd64f5
commit
e4f41d5598
56
pkgs/by-name/gt/gtuber/package.nix
Normal file
56
pkgs/by-name/gt/gtuber/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user