mirror of
https://git.in.rschanz.org/ryan77627/guix-config.git
synced 2024-11-07 07:36:09 -05:00
version bump to xdg-desktop-portal-wlr
This commit is contained in:
parent
3cdea05bcd
commit
48409f81f8
2 changed files with 27 additions and 2 deletions
24
modules/ryan-packages/freedesktop.scm
Normal file
24
modules/ryan-packages/freedesktop.scm
Normal file
|
@ -0,0 +1,24 @@
|
|||
(define-module (ryan-packages freedesktop)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
#:use-module (gnu packages wm))
|
||||
|
||||
(define-public xdg-desktop-portal-wlr-new
|
||||
(package
|
||||
(inherit xdg-desktop-portal-wlr)
|
||||
(version "0.7.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/emersion/xdg-desktop-portal-wlr")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1b3hpp3ybjgnnmnwsyb5bsnvz9q5nr3zz0j1alh02g24f68lf00k"))
|
||||
(patches (search-patches "xdg-desktop-portal-wlr-harcoded-length.patch"))))
|
||||
(native-inputs (modify-inputs (package-native-inputs xdg-desktop-portal-wlr)
|
||||
(append wlroots)))))
|
|
@ -18,6 +18,7 @@
|
|||
(use-modules (guix licenses))
|
||||
(use-modules (gnu packages tls))
|
||||
(use-modules (srfi srfi-1))
|
||||
(use-modules (ryan-packages freedesktop))
|
||||
(use-package-modules security-token)
|
||||
(use-service-modules cups desktop networking xorg ssh sound security-token docker virtualization)
|
||||
|
||||
|
@ -124,7 +125,7 @@
|
|||
"libfreeaptx"
|
||||
"libfdk"
|
||||
"opendoas"
|
||||
"xdg-desktop-portal-wlr"
|
||||
;"xdg-desktop-portal-wlr"
|
||||
"xdg-desktop-portal"
|
||||
"pipewire"
|
||||
"docker"
|
||||
|
@ -132,7 +133,7 @@
|
|||
"virt-manager"
|
||||
"wireplumber"
|
||||
"zsh"))
|
||||
(list my-ca-certs)
|
||||
(list my-ca-certs xdg-desktop-portal-wlr-new)
|
||||
%my-base-packages ))
|
||||
|
||||
;; Below is the list of system services. To search for available
|
||||
|
|
Loading…
Reference in a new issue