summaryrefslogtreecommitdiff
path: root/gnu/packages/gstreamer.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-11-11 15:16:56 +0900
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2025-03-02 20:31:35 +0100
commit47363abf365c5c35df2990c1c7a035a16c778e91 (patch)
tree14e89eba56a6716fc86ec668f911c28fc0f3183b /gnu/packages/gstreamer.scm
parent007667af0fb22b56ca495b6ae0e55b116d950fc5 (diff)
gnu: gst-plugins-espeak: Update to 0.6.0.
* gnu/packages/gstreamer.scm (gst-plugins-espeak): Update to 0.6.0. [version]: Do not use git-version. [source]: Use url-fetch. Change-Id: I33ee4875d15fc10836aa37286ccb2ff3e6523fdc Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/gstreamer.scm')
-rw-r--r--gnu/packages/gstreamer.scm44
1 files changed, 20 insertions, 24 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 811b261a5c..a9bc498cac 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -10,7 +10,7 @@
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Liliana Marie Prikler <liliana.prikler@gmail.com>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
-;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2024 Remco van 't Veer <remco@remworks.net>
;;;
;;; This file is part of GNU Guix.
@@ -1174,27 +1174,23 @@ mp3, you can use gst123 to play all your music files.")
(license license:lgpl2.0+)))
(define-public gst-plugins-espeak
- (let ((commit "7f6e41274fb833a487a7ee8ac0c236f0821330cc")
- (revision "1"))
- (package
- (name "gst-plugins-espeak")
- (version (git-version "0.5.0" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/sugarlabs/gst-plugins-espeak")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0va4ghcdda8cbqzv376hgmv1ay79va4kyazibfj8m5n52bhxxqgz"))))
- (build-system gnu-build-system)
- (inputs
- (list espeak-ng gstreamer gst-plugins-base))
- (native-inputs
- (list autoconf automake libtool pkg-config))
- (home-page "http://wiki.sugarlabs.org/go/Activity_Team/gst-plugins-espeak")
- (synopsis "Use espeak")
- (description "This is a Gstreamer @code{src} plugin to use the espeak
+ (package
+ (name "gst-plugins-espeak")
+ (version "0.6.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sugarlabs/gst-plugins-espeak")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0c9j5gbsl0rzwkqgg1c1a2vlyvcsliyl8a57qkwsqrnqrwnvw28w"))))
+ (build-system gnu-build-system)
+ (inputs (list espeak-ng gstreamer gst-plugins-base))
+ (native-inputs (list autoconf automake libtool pkg-config))
+ (home-page "http://wiki.sugarlabs.org/go/Activity_Team/gst-plugins-espeak")
+ (synopsis "Gstreamer plugin for Espeak")
+ (description "This is a Gstreamer @code{src} plugin to use the espeak
speech synthesizer as a sound source.")
- (license license:lgpl2.0+))))
+ (license license:lgpl2.0+)))