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 <cnx@loang.net>
This commit is contained in:
Nicolas Graves
2026-04-14 01:54:03 +02:00
committed by Nguyễn Gia Phong
parent 7da2802402
commit 2c21c44072

View File

@@ -523,22 +523,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")