rygel: include the PipeWire GStreamer plugin (#355558)
This commit is contained in:
@@ -1,32 +1,34 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, docbook-xsl-nons
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, vala
|
||||
, gettext
|
||||
, libxml2
|
||||
, libxslt
|
||||
, gobject-introspection
|
||||
, wrapGAppsHook3
|
||||
, python3
|
||||
, glib
|
||||
, gssdp_1_6
|
||||
, gupnp_1_6
|
||||
, gupnp-av
|
||||
, gupnp-dlna
|
||||
, gst_all_1
|
||||
, libgee
|
||||
, libsoup_3
|
||||
, gtk3
|
||||
, libmediaart
|
||||
, sqlite
|
||||
, systemd
|
||||
, tinysparql
|
||||
, shared-mime-info
|
||||
, gnome
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchurl,
|
||||
docbook-xsl-nons,
|
||||
meson,
|
||||
ninja,
|
||||
pkg-config,
|
||||
vala,
|
||||
gettext,
|
||||
libxml2,
|
||||
libxslt,
|
||||
gobject-introspection,
|
||||
wrapGAppsHook3,
|
||||
python3,
|
||||
glib,
|
||||
gssdp_1_6,
|
||||
gupnp_1_6,
|
||||
gupnp-av,
|
||||
gupnp-dlna,
|
||||
gst_all_1,
|
||||
libgee,
|
||||
libsoup_3,
|
||||
gtk3,
|
||||
libmediaart,
|
||||
pipewire,
|
||||
sqlite,
|
||||
systemd,
|
||||
tinysparql,
|
||||
shared-mime-info,
|
||||
gnome,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
@@ -34,7 +36,10 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
version = "0.44.1";
|
||||
|
||||
# TODO: split out lib
|
||||
outputs = [ "out" "dev" ];
|
||||
outputs = [
|
||||
"out"
|
||||
"dev"
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/rygel/${lib.versions.majorMinor finalAttrs.version}/rygel-${finalAttrs.version}.tar.xz";
|
||||
@@ -59,28 +64,31 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gssdp_1_6
|
||||
gupnp_1_6
|
||||
gupnp-av
|
||||
gupnp-dlna
|
||||
libgee
|
||||
libsoup_3
|
||||
gtk3
|
||||
libmediaart
|
||||
sqlite
|
||||
systemd
|
||||
tinysparql
|
||||
shared-mime-info
|
||||
] ++ (with gst_all_1; [
|
||||
gstreamer
|
||||
gst-editing-services
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
gst-plugins-ugly
|
||||
]);
|
||||
buildInputs =
|
||||
[
|
||||
glib
|
||||
gssdp_1_6
|
||||
gupnp_1_6
|
||||
gupnp-av
|
||||
gupnp-dlna
|
||||
libgee
|
||||
libsoup_3
|
||||
gtk3
|
||||
libmediaart
|
||||
pipewire
|
||||
sqlite
|
||||
systemd
|
||||
tinysparql
|
||||
shared-mime-info
|
||||
]
|
||||
++ (with gst_all_1; [
|
||||
gstreamer
|
||||
gst-editing-services
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
gst-plugins-ugly
|
||||
]);
|
||||
|
||||
mesonFlags = [
|
||||
"-Dsystemd-user-units-dir=${placeholder "out"}/lib/systemd/user"
|
||||
|
||||
Reference in New Issue
Block a user