* gnu/packages/mate.scm (libmatemixer): New variable.
---
gnu/packages/mate.scm | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index ebe99cb..c88db14 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -34,7 +34,9 @@
#:use-module (gnu packages python)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages polkit)
- #:use-module (gnu packages iso-codes))
+ #:use-module (gnu packages iso-codes)
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages pulseaudio))
(define-public mate-icon-theme
(package
@@ -271,3 +273,31 @@ environment.")
"Libmatekbd offers an API to manage the keyboard in MATE applications and
the GUI elements to display its operations.")
(license license:lgpl2.0+)))
+
+(define-public libmatemixer
+ (package
+ (name "libmatemixer")
+ (version "1.12.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://pub.mate-desktop.org/releases/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1w0grrhlmwajw6d92cs4gfwck6nq23i30alj50243dygycaxvkfy"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("intltool" ,intltool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("pulseaudio" ,pulseaudio)))
+ (propagated-inputs
+ `(("glib" ,glib)))
+ (home-page "http://mate-desktop.org/")
+ (synopsis "Sound mixer library for MATE Desktop")
+ (description
+ "Libmatemixer provides an abstract API allowing access to mixer
+functionality available in the PulseAudio, ALSA and OSS sound systems.")
+ (license license:lgpl2.0+)))
--
1.9.1