all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vivien Kraus via Guix-patches via <guix-patches@gnu.org>
To: Liliana Marie Prikler <liliana.prikler@gmail.com>,67309@debbugs.gnu.org
Cc: rg@raghavgururajan.name, maxim.cournoyer@gmail.com
Subject: [bug#67309] [PATCH gnome-team v2 2/2] gnu: Add gnome-connections.
Date: Mon, 20 Nov 2023 20:25:45 +0100	[thread overview]
Message-ID: <c36ca506c7e4d1bc90bb518a653d2034df005091.1700598480.git.vivien@planete-kraus.eu> (raw)
In-Reply-To: <14d75a8336919498688aa081fb11251b50898ebc.1700598480.git.vivien@planete-kraus.eu>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 3206 bytes --]

* gnu/packages/gnome.scm (gnome-connections): New variable.

Change-Id: I4c026ab3aae07a73fcbc9b4b0612538455fe126a
---
I kept the support-related sentence in the description because I think it is
important to put this application in the search results for “support” and
“help”.  But feel free to kill the last sentence if you don’t think so.

 gnu/packages/gnome.scm | 58 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 6ace6d2f90..441eab6f4d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -13621,3 +13621,61 @@ (define-public gtk-frdp
 This library provides a widget to view @acronym{RDP,Remote Desktop Protocol}
 sessions.")
     (license license:gpl3+)))
+
+(define-public gnome-connections
+  (package
+    (name "gnome-connections")
+    (version "44.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://gnome/sources/" name "/"
+                                  (version-major version) "/"
+                                  name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0sv238bq0dhi68ksr3bcl4q44i3ishk5i10c2325qz879f92sshk"))
+              (snippet
+               #~(begin
+                   (use-modules (guix build utils))
+                   (delete-file-recursively "subprojects")))))
+    (build-system meson-build-system)
+    (arguments
+     (list
+      #:glib-or-gtk? #t
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch-meson
+            (lambda _
+              (substitute* "meson.build"
+                (("gtk_update_icon_cache: true")
+                 "gtk_update_icon_cache: false")
+                (("update_desktop_database: true")
+                 "update_desktop_database: false"))))
+          (add-after 'unpack 'disable-nonfree-advertisement
+            (lambda _
+              (substitute* "src/ui/assistant.ui"
+                (("\\(standard for connecting to Linux\\)")
+                 "(standard for connecting to GNU/Linux)"))
+              (substitute* "src/ui/onboarding-dialog.ui"
+                (("Access [a-zA-Z ,]* desktops")
+                 "Access desktops with different operating systems")
+                ;; Replace the logos of non-free operating systems with the
+                ;; default image: the project metaphor for connecting to a
+                ;; remote desktop.
+                (("multiplatform.svg")
+                 "welcome.svg")))))))
+    (inputs
+     (list gtk+ gtk-frdp gtk-vnc libhandy libsecret libxml2))
+    (native-inputs
+     (list gettext-minimal
+           `(,glib "bin")
+           itstool
+           pkg-config
+           vala))
+    (home-page "https://apps.gnome.org/Connections")
+    (synopsis "View and use other desktops")
+    (description "Connections allows the user to connect to different
+real or virtual machines, using @acronym{VNC,Virtual Network Computing}
+or @acronym{RDP,Remote Desktop Protocol}.  It can be used to provide support
+for other users who need help.")
+    (license license:gpl3+)))
-- 
2.41.0




  reply	other threads:[~2023-11-21 20:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-20 19:28 [bug#67309] [PATCH gnome-team 0/2] Add gnome-connections Vivien Kraus via Guix-patches via
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team v2 1/2] gnu: Add gtk-frdp Vivien Kraus via Guix-patches via
2023-11-20 19:25   ` Vivien Kraus via Guix-patches via [this message]
2023-11-21 20:57     ` [bug#67309] [PATCH gnome-team v2 2/2] gnu: Add gnome-connections Liliana Marie Prikler
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team 1/2] gnu: Add gtk-frdp Vivien Kraus via Guix-patches via
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team v5] gnu: Add gnome-connections Vivien Kraus via Guix-patches via
2023-12-03 23:52   ` Maxim Cournoyer
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team 2/2] " Vivien Kraus via Guix-patches via
2023-11-20 19:55   ` Liliana Marie Prikler
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team v3] " Vivien Kraus via Guix-patches via
2023-11-24 23:09   ` Liliana Marie Prikler
2023-11-20 19:25 ` [bug#67309] [PATCH gnome-team v4] " Vivien Kraus via Guix-patches via
2023-11-26 20:17   ` Liliana Marie Prikler
2023-12-04 17:22 ` [bug#67309] [PATCH gnome-team v6 1/2] gnu: gtk-frdp: Improve wording Vivien Kraus via Guix-patches via
2023-12-04 17:22   ` [bug#67309] [PATCH gnome-team v6 2/2] gnu: gnome-connections: " Vivien Kraus via Guix-patches via
2023-12-04 23:06     ` Maxim Cournoyer
2023-12-04 23:05   ` [bug#67309] [PATCH gnome-team v6 1/2] gnu: gtk-frdp: " Maxim Cournoyer
2023-12-19 23:01     ` bug#67309: " Liliana Marie Prikler

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=c36ca506c7e4d1bc90bb518a653d2034df005091.1700598480.git.vivien@planete-kraus.eu \
    --to=guix-patches@gnu.org \
    --cc=67309@debbugs.gnu.org \
    --cc=liliana.prikler@gmail.com \
    --cc=maxim.cournoyer@gmail.com \
    --cc=rg@raghavgururajan.name \
    --cc=vivien@planete-kraus.eu \
    /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.