[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
39/100: gnu: Add esound.
From: |
guix-commits |
Subject: |
39/100: gnu: Add esound. |
Date: |
Wed, 8 Jul 2020 03:36:43 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 4940d17b845c43894154ceecfdc8594e88d7ac96
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Thu Jun 11 06:31:26 2020 -0400
gnu: Add esound.
* gnu/packages/gstreamer.scm (esound): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gstreamer.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 69fb1d8..6381d42 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -29,17 +29,21 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix build-system meson)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages audio)
+ #:use-module (gnu packages autotools)
+ #:use-module (gnu packages base)
#:use-module (gnu packages bison)
#:use-module (gnu packages cdrom)
#:use-module (gnu packages curl)
#:use-module (gnu packages compression)
#:use-module (gnu packages flex)
#:use-module (gnu packages freedesktop)
+ #:use-module (gnu packages gettext)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
@@ -51,10 +55,12 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages mp3)
#:use-module (gnu packages ncurses)
+ #:use-module (gnu packages networking)
#:use-module (gnu packages perl)
#:use-module (gnu packages pulseaudio)
#:use-module (gnu packages qt)
#:use-module (gnu packages rdf)
+ #:use-module (gnu packages shells)
#:use-module (gnu packages video)
#:use-module (gnu packages xorg)
#:use-module (gnu packages xiph)
@@ -67,6 +73,51 @@
#:use-module (gnu packages assembly)
#:use-module (gnu packages xml))
+(define-public esound
+ (package
+ (name "esound")
+ (version "0.2.41")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://gitlab.gnome.org/Archive/esound.git")
+ (commit "ESOUND_0_2_41")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "141jg70fim276i8k2kyypm84gy89i1k9mm4yf68mfwnybvjw1d6n"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("gettext" ,gettext-minimal)
+ ("gnome-common" ,gnome-common)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)
+ ("tcsh" ,tcsh) ; for the tests
+ ("which" ,which)))
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("pcaudiolib" ,pcaudiolib)
+ ("tcp-wrappers" ,tcp-wrappers)))
+ (propagated-inputs
+ `(("audiofile" ,audiofile)))
+ (synopsis "Enlightened Sound Daemon")
+ (description "The Enlightened Sound Daemon mixes several audio streams for
+playback by a single audio device. You can also pre-load samples, and play
them
+back without having to send all the data for the sound. Network transparency
is
+also built in, so you can play sounds on one machine, and listen to them on
+another.")
+ (home-page "https://web.archive.org/web/20160528230227/
+http://www.tux.org/~ricdude/overview.html")
+ (license
+ (list
+ ;; Libraries.
+ license:lgpl2.0+
+ ;; Others.
+ license:gpl2+))))
+
(define-public orc
(package
(name "orc")
- 64/100: gnu: Add libde265., (continued)
- 64/100: gnu: Add libde265., guix-commits, 2020/07/08
- 59/100: gnu: Add directfb., guix-commits, 2020/07/08
- 62/100: gnu: Add ffmpeg-2.8., guix-commits, 2020/07/08
- 69/100: gnu: Add libofa., guix-commits, 2020/07/08
- 70/100: gnu: Add libopenmpt., guix-commits, 2020/07/08
- 72/100: gnu: Add lksctp-tools., guix-commits, 2020/07/08
- 44/100: gnu: gobject-introspection: Update package definition., guix-commits, 2020/07/08
- 49/100: gnu: gst-plugins-good: Update package definition., guix-commits, 2020/07/08
- 32/100: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/07/08
- 36/100: gnu: Add mutest., guix-commits, 2020/07/08
- 39/100: gnu: Add esound.,
guix-commits <=
- 48/100: gnu: gst-plugins-base: Update package definition., guix-commits, 2020/07/08
- 53/100: gnu: Add libdc1394., guix-commits, 2020/07/08
- 55/100: gnu: Add libmpeg3., guix-commits, 2020/07/08
- 56/100: gnu: Add tslib., guix-commits, 2020/07/08
- 57/100: gnu: Add flux., guix-commits, 2020/07/08
- 58/100: gnu: Add libtimidity., guix-commits, 2020/07/08
- 60/100: gnu: Add faac., guix-commits, 2020/07/08
- 61/100: gnu: Add flite., guix-commits, 2020/07/08
- 63/100: gnu: Add libvideogfx., guix-commits, 2020/07/08
- 65/100: gnu: Add libmms., guix-commits, 2020/07/08