summaryrefslogtreecommitdiff
path: root/rodion/packages/freedesktop.scm
blob: a6de0cd49fb835a0a93b5554e79bbf50ca7acc97 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"))))))))