mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 20:57:12 -05:00
gnu: ddcci-driver-linux: Use G-expressions.
* gnu/packages/linux.scm (ddcci-driver-linux)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
f780660ab7
commit
cfe6b36420
1 changed files with 17 additions and 17 deletions
|
@ -1484,23 +1484,23 @@ (define-public ddcci-driver-linux
|
||||||
(base32 "1lww3mnqhxqzj0qbxzbwbq93v9zw49myp7p9ib873a5izbq8nadi"))))
|
(base32 "1lww3mnqhxqzj0qbxzbwbq93v9zw49myp7p9ib873a5izbq8nadi"))))
|
||||||
(build-system linux-module-build-system)
|
(build-system linux-module-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
(list #:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda args
|
(lambda args
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (module)
|
(lambda (module)
|
||||||
(with-directory-excursion module
|
(with-directory-excursion module
|
||||||
(apply (assoc-ref %standard-phases 'build) args)))
|
(apply (assoc-ref %standard-phases 'build) args)))
|
||||||
'("ddcci" "ddcci-backlight"))))
|
'("ddcci" "ddcci-backlight"))))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda args
|
(lambda args
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (module)
|
(lambda (module)
|
||||||
(with-directory-excursion module
|
(with-directory-excursion module
|
||||||
(apply (assoc-ref %standard-phases 'install) args)))
|
(apply (assoc-ref %standard-phases 'install) args)))
|
||||||
'("ddcci" "ddcci-backlight")))))))
|
'("ddcci" "ddcci-backlight")))))))
|
||||||
(home-page "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux")
|
(home-page "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux")
|
||||||
(synopsis "Pair of Linux kernel drivers for DDC/CI monitors")
|
(synopsis "Pair of Linux kernel drivers for DDC/CI monitors")
|
||||||
(description "This package provides two Linux kernel drivers, ddcci and
|
(description "This package provides two Linux kernel drivers, ddcci and
|
||||||
|
|
Loading…
Reference in a new issue