summaryrefslogtreecommitdiff
path: root/rodion/packages/freedesktop.scm
diff options
context:
space:
mode:
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"))))))))