[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52492] [PATCH 3/7] gnu: Add wireplumber
From: |
Josselin Poiret |
Subject: |
[bug#52492] [PATCH 3/7] gnu: Add wireplumber |
Date: |
Tue, 14 Dec 2021 22:47:48 +0100 |
* gnu/packages/linux.scm (wireplumber): Add it.
---
gnu/packages/linux.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 77632c51c9..ec41a5450b 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -88,6 +88,7 @@ (define-module (gnu packages linux)
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages boost)
+ #:use-module (gnu packages build-tools)
#:use-module (gnu packages calendar)
#:use-module (gnu packages check)
#:use-module (gnu packages cpio)
@@ -8143,6 +8144,36 @@ (define-public pipewire-0.3
vulkan-loader
vulkan-headers)))))
+(define-public wireplumber
+ (package
+ (name "wireplumber")
+ (version "0.4.5")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
+ "https://gitlab.freedesktop.org/pipewire/wireplumber.git";)
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1k56i5cardwr03vkldg68714hyksyp1vb0b315yw1bilaj2ka30i"))))
+ (build-system meson-build-system)
+ (arguments
+ `(#:configure-flags '("-Dsystemd=disabled"
+ "-Dsystem-lua=true")))
+ (native-inputs
+ `(("glib-bin" ,glib "bin")
+ ("pkg-config" ,pkg-config)))
+ (inputs (list dbus elogind glib lua pipewire-0.3))
+ (home-page "https://gitlab.freedesktop.org/pipewire/wireplumber";)
+ (synopsis "Session / policy manager implementation for PipeWire")
+ (description "WirePlumber is a modular session / policy manager for
+PipeWire and a GObject-based high-level library that wraps PipeWire's API,
+providing convenience for writing the daemon's modules as well as external
+tools for managing PipeWire.")
+ (license license:expat)))
+
(define-public ell
(package
(name "ell")
--
2.34.0
- [bug#52492] [PATCH 0/7] Improve screen sharing support under Wayland, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 3/7] gnu: Add wireplumber,
Josselin Poiret <=
- [bug#52492] [PATCH 2/7] gnu: pipewire-0.3: Update to 0.3.41, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 7/7] gnu: flameshot: Update to 0.10.2, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 5/7] gnu: xdg-desktop-portal-wlr: Use new input style, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 1/7] gnu: pipewire-0.3: Use new input style, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 4/7] gnu: xdg-desktop-portal-wlr: Update to 0.5.0, Josselin Poiret, 2021/12/14
- [bug#52492] [PATCH 6/7] gnu: xdg-desktop-portal-wlr: Add binary dependencies, Josselin Poiret, 2021/12/14
- bug#52492: [PATCH 0/7] Improve screen sharing support under Wayland, Mathieu Othacehe, 2021/12/19