aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/animation.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2024-11-03 17:02:21 +0100
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-11-04 18:30:48 +0800
commitdd31f1ab90df3722a7d0b3c18595d021057381f3 (patch)
treea1ce7fc85de80969d9194382811e2162813c82d2 /gnu/packages/animation.scm
parent1e1e5dbf137eb7cbe73d10cd226a5f5f11069408 (diff)
downloadguix-dd31f1ab90df3722a7d0b3c18595d021057381f3.tar.gz
guix-dd31f1ab90df3722a7d0b3c18595d021057381f3.zip
gnu: snapcast: Update to 0.29.0. [security fixes]
This fixes CVE-2023-36177. * gnu/packages/audio.scm (snapcast): Update to 0.29.0.
Diffstat (limited to 'gnu/packages/animation.scm')
0 files changed, 0 insertions, 0 deletions
rting final step") (send-to-clients '(starting-final-step)) (match (select (current-clients) '() '()) (((port _ ...) _ _) (read-line port))))) ;; Before generating the configuration file, give clients a chance to do ;; things such as changing the swap partition label. (wait-for-clients) (installer-log-line "proceeding with final step") (let* ((configuration (format-configuration prev-steps result)) (user-partitions (result-step result 'partition)) (locale (result-step result 'locale)) (users (result-step result 'user)) (install-ok? (with-mounted-partitions user-partitions (configuration->file configuration) (run-config-display-page #:locale locale) (run-install-shell locale #:users users)))) (if install-ok? (run-install-success-page) (run-install-failed-page)))) (define (dry-run-final-page result prev-steps) (installer-log-line "proceeding with final step -- dry-run") (let* ((configuration (format-configuration prev-steps result)) (user-partitions (result-step result 'partition)) (locale (result-step result 'locale)) (users (result-step result 'user)) (file (configuration->file configuration)) (install-ok? (run-config-display-page #:locale locale))) (if install-ok? (run-install-success-page) (run-install-failed-page)))) (define (run-final-page result prev-steps dry-run?) (if dry-run? (dry-run-final-page result prev-steps) (run-final-page-install result prev-steps)))