1
0
mirror of https://codeberg.org/hako/Rosenthal.git synced 2025-06-29 05:35:21 +00:00
Rosenthal/modules/rosenthal/packages/video.scm
Hilton Chain 8ab6e64fe4
maint: Replace property ‘rosenthal-update?’ with ‘disable-updater?’.
* modules/rosenthal/packages.scm (rosenthal-disable-updater?): New procedure.
2025-05-24 16:54:56 +08:00

27 lines
824 B
Scheme

;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space>
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
(define-module (rosenthal packages video)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages video))
(define-public libva-nox
(let ((base libva))
(package
(inherit base)
(name "libva-nox")
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:configure-flags configure-flags)
#~(append #$configure-flags (list "--disable-glx")))
((#:phases _) #~%standard-phases)))
(inputs
(modify-inputs (package-inputs base)
(delete "libx11" "libxext" "libxfixes")))
(properties
`(,@(package-properties base)
(disable-updater? . #t))))))