all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Raghav Gururajan via Guix-patches via <guix-patches@gnu.org>
To: 48953@debbugs.gnu.org
Cc: Raghav Gururajan <rg@raghavgururajan.name>
Subject: [bug#48953] [PATCH v3 3/3] gnu: dino: Enable missing features.
Date: Wed, 16 Jun 2021 03:17:53 -0400	[thread overview]
Message-ID: <20210616071753.14948-3-rg@raghavgururajan.name> (raw)
In-Reply-To: <20210616071753.14948-1-rg@raghavgururajan.name>

* gnu/packages/messaging.scm (dino)[inputs]: Add gspell and icu4c.
---
 gnu/packages/messaging.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 54d09c4815..c526b7a91a 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1241,6 +1241,14 @@ Encryption to Gajim.")
                            (guix build glib-or-gtk-build-system))
        #:phases
        (modify-phases %standard-phases
+         ;; To be enabled in v0.3.0, for A/V support.
+         ;;(add-after 'install 'wrap
+           ;;(lambda* (#:key outputs #:allow-other-keys)
+             ;;(let* ((out (assoc-ref outputs "out"))
+                    ;;(dino (string-append out "/bin/dino"))
+                    ;;(gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
+               ;;(wrap-program dino
+                 ;;`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))))))
          (add-after 'install 'glib-or-gtk-wrap
            (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
     (native-inputs
@@ -1251,6 +1259,7 @@ Encryption to Gajim.")
        ("pkg-config" ,pkg-config)
        ("vala" ,vala)))
     (inputs
+     ;; NOTE: Commented-out lines are to be enabled in v0.3.0.
      `(("atk" ,atk)
        ("cairo" ,cairo)
        ("gdk-pixbuf" ,gdk-pixbuf+svg)
@@ -1258,15 +1267,23 @@ Encryption to Gajim.")
        ("glib-networking" ,glib-networking)
        ("gpgme" ,gpgme)
        ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
+       ("gspell" ,gspell)               ;for spell-check support
+       ;;("gstreamer" ,gstreamer)         ;for A/V support
+       ;;("gst-plugins-base" ,gst-plugins-base)
+       ;;("gst-plugins-good" ,gst-plugins-good)
        ("gtk+" ,gtk+)
+       ("icu4c" ,icu4c)                 ;for emoji support
+       ("libcanberra" ,libcanberra)    ;for sound-notification support
        ("libgcrypt" ,libgcrypt)
        ("libgee" ,libgee)
        ("libnice" ,libnice)
        ("libsignal-protocol-c" ,libsignal-protocol-c)
        ("libsoup" ,libsoup)
+       ;;("libsrtp" ,libsrtp)             ;for calls support
        ("pango" ,pango)
        ("qrencode" ,qrencode)
        ("sqlite" ,sqlite)))
+       ;;("webrtc-audio-processing" ,webrtc-audio-processing))) ;for A/V support
     (synopsis "Graphical Jabber/XMPP Client using GTK+/Vala")
     (description "Dino is a chat client for the desktop.  It focuses on providing
 a minimal yet reliable Jabber/XMPP experience and having encryption enabled by
-- 
2.32.0





  parent reply	other threads:[~2021-06-16  7:18 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-11  1:00 [bug#48953] [PATCH v1 00/03]: Improve Dino Raghav Gururajan via Guix-patches via
2021-06-11  1:01 ` [bug#48953] [PATCH v1 1/3] gnu: dino: Remove duplicate inputs Raghav Gururajan via Guix-patches via
2021-06-11  1:01   ` [bug#48953] [PATCH v1 2/3] gnu: dino: Add missing inputs Raghav Gururajan via Guix-patches via
2021-06-11  1:01   ` [bug#48953] [PATCH v1 3/3] gnu: dino: Enable missing features Raghav Gururajan via Guix-patches via
2021-06-11  1:15 ` [bug#48953] [PATCH v2 1/3] gnu: dino: Remove duplicate inputs Raghav Gururajan via Guix-patches via
2021-06-11  1:15   ` [bug#48953] [PATCH v2 2/3] gnu: dino: Add missing inputs Raghav Gururajan via Guix-patches via
2021-06-11  3:31     ` Jack Hill
2021-06-11 15:06       ` Jack Hill
2021-06-17  0:17       ` Raghav Gururajan via Guix-patches via
2021-06-11  1:15   ` [bug#48953] [PATCH v2 3/3] gnu: dino: Enable missing features Raghav Gururajan via Guix-patches via
2021-06-11  3:35     ` Jack Hill
2021-06-17  0:19       ` Raghav Gururajan via Guix-patches via
2021-06-16  7:17 ` [bug#48953] [PATCH v3 1/3] gnu: dino: Remove duplicate inputs Raghav Gururajan via Guix-patches via
2021-06-16  7:17   ` [bug#48953] [PATCH v3 2/3] gnu: dino: Add missing inputs Raghav Gururajan via Guix-patches via
2021-06-16  7:17   ` Raghav Gururajan via Guix-patches via [this message]
2021-06-16  7:19 ` [bug#48953] [PATCH v4 1/3] gnu: dino: Remove duplicate inputs Raghav Gururajan via Guix-patches via
2021-06-16  7:19   ` [bug#48953] [PATCH v4 2/3] gnu: dino: Add missing inputs Raghav Gururajan via Guix-patches via
2021-06-16  7:19   ` [bug#48953] [PATCH v4 3/3] gnu: dino: Enable missing features Raghav Gururajan via Guix-patches via
2021-06-17  0:20 ` [bug#48953] [PATCH v5 1/3] gnu: dino: Remove duplicate inputs Raghav Gururajan via Guix-patches via
2021-06-17  0:20   ` [bug#48953] [PATCH v5 2/3] gnu: dino: Add missing inputs Raghav Gururajan via Guix-patches via
2021-06-17  0:20   ` [bug#48953] [PATCH v5 3/3] gnu: dino: Enable some features Raghav Gururajan via Guix-patches via
2021-06-21 17:19     ` Jack Hill
2021-06-22  5:19 ` bug#48953: (no subject) Raghav Gururajan via Guix-patches via

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

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

  git send-email \
    --in-reply-to=20210616071753.14948-3-rg@raghavgururajan.name \
    --to=guix-patches@gnu.org \
    --cc=48953@debbugs.gnu.org \
    --cc=rg@raghavgururajan.name \
    /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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.