diff options
author | Liliana Marie Prikler <[email protected]> | 2024-07-14 12:23:04 +0200 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:26 +0100 |
commit | dbcd97fb0e6b080ea0ceff524da2f3eaefca417a (patch) | |
tree | 5663b4222b73f786c676586c8546cb08ea75e228 /gnu/packages/gnome.scm | |
parent | b540531057a86cb7a126d5988e21dd2e6684dd14 (diff) |
gnu: Add gtk-frdp-for-gnome-connections.
* gnu/packages/gnome.scm (gtk-frdp-for-gnome-connections): New variable.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index da93322c2b..b01c31f594 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -14355,6 +14355,23 @@ you to mark favorite talks and highlights conflicts between favorited talks.") @acronym{RDP, Remote Desktop Protocol} sessions.") (license license:gpl3+))) +(define gtk-frdp-for-gnome-connections + (let ((commit "6cfdc840159bb349310c3b81cd2df949f1522760") + (revision "1")) + (package + (inherit gtk-frdp) + (version (git-version "45.90" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.gnome.org/GNOME/gtk-frdp") + (commit commit))) + (file-name (git-file-name "gtk-frdp" version)) + (sha256 + (base32 + "1xgilpa2zkcnyi9hvj8yw1db19pz5d1xgvm1pm79mjs4ls8pdn0n"))))))) + (define-public gnome-connections (package (name "gnome-connections") |