guix_mirror_bot pushed a commit to branch misc-world-rebuild in repository guix.
commit 1668773d782ea289d137b5790bbedd40e1a85903 Author: Nicolas Graves <[email protected]> AuthorDate: Tue Apr 14 01:54:03 2026 +0200 gnu: schroedinger: Improve style. * gnu/packages/video.scm (schroedinger): Improve style. [arguments]: Rewrite them in a modern style. [inputs]: Drop input labels. Change-Id: If8f0a23cf04c36bb27aa3353d0610ea58da5c95f Signed-off-by: Nguyễn Gia Phong <[email protected]> --- gnu/packages/video.scm | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 173fd3edce..527807af7b 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -522,22 +522,19 @@ video decode, encode and filtering on Intel's Gen graphics hardware platforms.") (build-system gnu-build-system) (outputs '("out" "doc")) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'install 'move-docs - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (assoc-ref outputs "out")) - (doc (assoc-ref outputs "doc"))) - (mkdir-p (string-append doc "/share")) - (rename-file - (string-append out "/share/gtk-doc") - (string-append doc "/share/gtk-doc")) - #t)))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'install 'move-docs + (lambda _ + (let ((doc #$output:doc)) + (mkdir-p (string-append doc "/share")) + (rename-file (string-append #$output "/share/gtk-doc") + (string-append doc "/share/gtk-doc")))))))) (native-inputs (list dash gtk-doc/stable pkg-config)) (inputs - `(("glew" ,glew) - ("opengl" ,mesa))) + (list glew mesa)) (propagated-inputs (list orc)) (synopsis "Dirac video codec")
