summaryrefslogtreecommitdiff
path: root/rodion/packages/freedesktop.scm
diff options
context:
space:
mode:
authorRodion Goritskov <rodion.goritskov@gmail.com>2024-10-10 00:34:56 +0400
committerRodion Goritskov <rodion.goritskov@gmail.com>2024-10-10 00:34:56 +0400
commit50efae93b9868b9b2b844b31050c55f19ec5a682 (patch)
treead4a6b75b9c92b9b93aac4aaf7da9e2fb887e0b9 /rodion/packages/freedesktop.scm
parent4fee0fc5137d2b5de26f07b232fcefd81b2c8d56 (diff)
gnu: Add xdg-desktop-portal-next/fixed.
* rodion/packages/freedesktop.scm (xdg-desktop-portal-next/fixed): New variable. * rodion/packages/patches/001-xdg-desktop-portal.patch: Add patch.
Diffstat (limited to 'rodion/packages/freedesktop.scm')
-rw-r--r--rodion/packages/freedesktop.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/rodion/packages/freedesktop.scm b/rodion/packages/freedesktop.scm
new file mode 100644
index 0000000..a6de0cd
--- /dev/null
+++ b/rodion/packages/freedesktop.scm
@@ -0,0 +1,15 @@
+(define-module (rodion packages freedesktop)
+ #:use-module (gnu packages freedesktop)
+ #:use-module (guix packages)
+ #:use-module (gnu packages)
+ #:use-module (guix gexp))
+
+;; xdg-desktop-portal newest version with configuration files reading fixes
+(define-public xdg-desktop-portal-next/fixed
+ (package
+ (inherit xdg-desktop-portal-next)
+ (source (origin
+ (inherit (package-source xdg-desktop-portal-next))
+ (patches (append
+ (origin-patches (package-source xdg-desktop-portal-next))
+ `(,(local-file "./patches/001-xdg-desktop-portal.patch"))))))))