mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-21 16:08:07 +01:00
nongnu: nvda: Avoid hardcoding inputs.
* nongnu/packages/nvidia.scm (nvda)[arguments]: Avoid hardcoding inputs and locate them via relative paths instead. [description]: Adjust style. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
6874c66ddc
commit
fb5a3d0e97
1 changed files with 21 additions and 18 deletions
|
@ -630,24 +630,27 @@ configuration, creating application profiles, gpu monitoring and more.")
|
|||
(build-system trivial-build-system)
|
||||
(arguments
|
||||
(list #:modules '((guix build union))
|
||||
#:builder #~(begin
|
||||
(use-modules (guix build union)
|
||||
(srfi srfi-1)
|
||||
(ice-9 regex))
|
||||
(union-build (assoc-ref %outputs "out")
|
||||
(list #$mesa #$nvidia-libs)
|
||||
#:resolve-collision (lambda (files) (let ((file
|
||||
(if (string-match "nvidia-libs" (first files))
|
||||
(first files)
|
||||
(last files))))
|
||||
(format #t "chosen ~a ~%" file)
|
||||
file))))))
|
||||
(description "These are the libraries of the evil Nvidia driver,
|
||||
packaged in such a way that you can use the transformation option
|
||||
@code{--with-graft=mesa=nvda} to use the nvidia driver with a package that requires mesa.")
|
||||
(inputs
|
||||
(list mesa
|
||||
nvidia-libs))
|
||||
#:builder
|
||||
#~(begin
|
||||
(use-modules (guix build union)
|
||||
(srfi srfi-1)
|
||||
(ice-9 regex))
|
||||
(union-build #$output
|
||||
(list #$(this-package-input "mesa")
|
||||
#$(this-package-input "nvidia-libs"))
|
||||
#:resolve-collision
|
||||
(lambda (files)
|
||||
(let ((file (if (string-match "nvidia-libs"
|
||||
(first files))
|
||||
(first files)
|
||||
(last files))))
|
||||
(format #t "chosen ~a ~%" file)
|
||||
file))))))
|
||||
(description
|
||||
"These are the libraries of the evil NVIDIA driver, packaged in such a
|
||||
way that you can use the transformation option @code{--with-graft=mesa=nvda}
|
||||
to use the NVIDIA driver with a package that requires mesa.")
|
||||
(inputs (list mesa nvidia-libs))
|
||||
(outputs '("out"))))
|
||||
|
||||
(define mesa/fake
|
||||
|
|
Loading…
Reference in a new issue