me
/
guix
Archived
1
0
Fork 0

gnu: gsettings-desktop-schemas: Update to 40.0.

* gnu/packages/gnome.scm (gsettings-desktop-schemas): Update to 40.0.
[source]: Fix the URI.
[arguments]: Remove trailing #t.
master
Mathieu Othacehe 2021-09-26 06:10:49 +00:00
parent 09b72091d0
commit 087e3cbdde
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 6 additions and 7 deletions

View File

@ -2689,16 +2689,16 @@ on the GNOME Desktop with a single simple application.")
(define-public gsettings-desktop-schemas (define-public gsettings-desktop-schemas
(package (package
(name "gsettings-desktop-schemas") (name "gsettings-desktop-schemas")
(version "3.34.0") (version "40.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/" (uri (string-append "mirror://gnome/sources/" name "/"
(version-major+minor version) "/" (version-major version) "/"
name "-" version ".tar.xz")) name "-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"1bayr76aylawf2fhyjhv9zgk4kpv7ivrrmd80khb0h3h1wk092r8")))) "11an29br55dp0b26kfqlrfxj19glfrmhcdpds2n1w9n04gq3pf7i"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
'(#:phases (modify-phases %standard-phases '(#:phases (modify-phases %standard-phases
@ -2707,13 +2707,12 @@ on the GNOME Desktop with a single simple application.")
(let ((theme (assoc-ref inputs "gnome-backgrounds"))) (let ((theme (assoc-ref inputs "gnome-backgrounds")))
(substitute* (find-files "schemas" (substitute* (find-files "schemas"
"\\.gschema\\.xml\\.in$") "\\.gschema\\.xml\\.in$")
;; Provide the correct file name of the default GNOME ;; Provide the correct file name of the default
;; background, 'adwaita-timed.xml'. ;; GNOME background, 'adwaita-timed.xml'.
(("@datadir@/backgrounds/gnome") (("@datadir@/backgrounds/gnome")
(string-append theme "/share/backgrounds/gnome")) (string-append theme "/share/backgrounds/gnome"))
;; Do not reference fonts, that may not exist. ;; Do not reference fonts, that may not exist.
(("'Source Code Pro 10'") "'Monospace 11'")) (("'Source Code Pro 10'") "'Monospace 11'"))))))))
#t))))))
(inputs (inputs
`(("glib" ,glib) `(("glib" ,glib)
("gnome-backgrounds" ,gnome-backgrounds))) ("gnome-backgrounds" ,gnome-backgrounds)))