unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: hunter.t.joz@gmail.com
To: 57126@debbugs.gnu.org
Cc: Hunter Jozwiak <hunter.t.joz@gmail.com>
Subject: [bug#57126] [PATCH v2] gnu: Add espeakup.
Date: Thu, 11 Aug 2022 20:39:13 -0700	[thread overview]
Message-ID: <CAJ1hvUF4H4LeGvTQ7Mz43nDSO-UhDDit8Cm2X4Vsx2U3s-TO3w@mail.gmail.com> (raw)
In-Reply-To: <CAJ1hvUECo3iJN9XTF36op30BZEiVsVQ+z1TZJodWuw4eBVZMEA@mail.gmail.com>

From: Hunter Jozwiak <hunter.t.joz@gmail.com>

* gnu/packages/accessibility.scm (espeakup): New variable.
---
Fixes a bunch of problems that I didn't catch the first time around,
namely the copyright symbols being replaced with question marks. Also
moves the package definition to the end of the file.
 gnu/packages/accessibility.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/accessibility.scm b/gnu/packages/accessibility.scm
index 22e70b737a..43e0aa9998 100644
--- a/gnu/packages/accessibility.scm
+++ b/gnu/packages/accessibility.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2018, 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019 Andrew Miloradovsky <andrew@interpretmath.pw>
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2022 Hunter Jozwiak <hunter.t.joz@gmail.
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -28,6 +29,7 @@ (define-module (gnu packages accessibility)
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system glib-or-gtk)
+  #:use-module (guix build-system meson)
   #:use-module (gnu packages)
   #:use-module (gnu packages lisp)
   #:use-module (gnu packages ocaml)
@@ -316,3 +318,34 @@ (define-public xmagnify
 assistant for graphic designers, who need to select individual pixels.")
     ;; Licensed either under Expat or GPLv2+.
     (license (list license:expat license:gpl2+))))
+
+(define-public espeakup
+  (package
+    (name "espeakup")
+    (version "0.90")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/linux-speakup/espeakup")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0lmjwafvfxy07zn18v3dzjwwpnid2xffgvy2dzlwkbns8gb60ds2"))))
+    (build-system meson-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list espeak-ng alsa-lib))
+    (license license:gpl3+)
+    (synopsis "A bridge for espeak and speakup")
+    (description
+     "Espeakup is a bridge between the speakup driver implemented in
+the Linux kernel and the espeak-ng text to synthesizer.
+In order for this package to work, you need to have the following
+kernel modules built:
+@itemize @bullet
+@item
+CONFIG_SPEAKUP=m
+@item
+CONFIG_SPEAKUP_SOFT=m
+@end itemize")
+    (home-page "https://github.com/williamh/espeakup")))
-- 
2.37.1




  reply	other threads:[~2022-08-12  5:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-10 20:17 [bug#57126] [PATCH] gnu: Add espeakup hunter.t.joz
2022-08-12  3:39 ` hunter.t.joz [this message]
2022-09-21 11:33   ` bug#57126: [PATCH v2] " Björn Höfling

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAJ1hvUF4H4LeGvTQ7Mz43nDSO-UhDDit8Cm2X4Vsx2U3s-TO3w@mail.gmail.com \
    --to=hunter.t.joz@gmail.com \
    --cc=57126@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).