diff options
author | Vivien Kraus <vivien@planete-kraus.eu> | 2023-11-20 20:25:28 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-12-02 17:08:53 +0100 |
commit | d359c0fbec7f161138c9ae541548690d3fe51df7 (patch) | |
tree | 7a98d4737e9546d4447564fc78558bef5e64366d /gnu | |
parent | 280aef16121e252a51c261db50a6f8b1743caad0 (diff) | |
download | guix-d359c0fbec7f161138c9ae541548690d3fe51df7.tar.gz guix-d359c0fbec7f161138c9ae541548690d3fe51df7.zip |
gnu: Add gtk-frdp.
* gnu/packages/rdesktop.scm (gtk-frdp): New variable.
Change-Id: I8ce190ca80245eff48af08e005e90e396e498e91
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 111edb59be..e999739e3f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13624,3 +13624,32 @@ receive calls.") backends, such as ModemManager for phones and @acronym{SIP, Session Initiation Protocol} for @acronym{VoIP, Voice over @acronym{IP, Internet Protocol}}.") (license license:gpl3+))) + +(define-public gtk-frdp + (package + (name "gtk-frdp") + ;; The latest published tag is 3.37.1, but it is very old: + ;; https://gitlab.gnome.org/GNOME/gtk-frdp/-/issues/39 + (version "3.37.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.gnome.org/GNOME/gtk-frdp") + (commit "62fc62c5ccb7634f0bc87c57a4673877c24c94ed"))) + (file-name (git-file-name "gtk-frdp" version)) + (sha256 + (base32 + "0msw7qpsyf9hkyq9ddhvl4g4vk1fnyi7g0bddca9x6p9d0arprqz")))) + (build-system meson-build-system) + (arguments + (list #:glib-or-gtk? #t)) + (inputs + (list freerdp fuse gtk+)) + (native-inputs + (list `(,glib "bin") gobject-introspection pkg-config vala)) + (home-page "https://gitlab.gnome.org/GNOME/gtk-frdp") + (synopsis "RDP viewer widget for Gtk") + (description "This library provides a widget to view +@acronym{RDP,Remote Desktop Protocol} sessions.") + (license license:gpl3+))) |