diff options
| author | Hilton Chain <hako@ultrarare.space> | 2026-03-21 00:04:39 +0800 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2026-03-22 19:35:59 +0800 |
| commit | 6ae218e4432e186e63c7ca48d1fdcde50414bfc6 (patch) | |
| tree | abe785df4686d128ba85596cdca2bd79277aeb1e /nongnu/packages/nvidia.scm | |
| parent | 35a3ee8b8c7897fff288a890ebefa417eea0e0e3 (diff) | |
nongnu: Reference the inherited arguments and inputs values.
Following upstream change in
https://codeberg.org/guix/guix/commit/6b1a15189e9f02f2962c4885092533f817d0375c
These references are found via:
rg '\(package-(arguments|[a-z]*-?inputs)'
No derivation changes are introduced by this commit.
Diffstat (limited to 'nongnu/packages/nvidia.scm')
| -rw-r--r-- | nongnu/packages/nvidia.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nongnu/packages/nvidia.scm b/nongnu/packages/nvidia.scm index d7fabd6..f75602e 100644 --- a/nongnu/packages/nvidia.scm +++ b/nongnu/packages/nvidia.scm @@ -483,7 +483,7 @@ driver.") (inherit base) (name "nvidia-module-open") (arguments - (substitute-keyword-arguments (package-arguments base) + (substitute-keyword-arguments arguments ;; NOTE: Kernels compiled with CONFIG_LTO_CLANG_THIN would cause an ;; error here. See also: ;; <https://github.com/NVIDIA/open-gpu-kernel-modules/issues/214> @@ -653,7 +653,7 @@ configuration, application profiles, GPU monitoring and more.") (package (inherit libglvnd) (arguments - (substitute-keyword-arguments (package-arguments libglvnd) + (substitute-keyword-arguments arguments ((#:configure-flags flags #~'()) #~(cons* "-Dc_link_args=-Wl,-rpath=$ORIGIN" #$flags)) ((#:phases phases #~%standard-phases) @@ -665,10 +665,10 @@ configuration, application profiles, GPU monitoring and more.") (package (inherit mesa) (propagated-inputs - (modify-inputs (package-propagated-inputs mesa) + (modify-inputs propagated-inputs (prepend libglvnd-for-nvda))) (arguments - (substitute-keyword-arguments (package-arguments mesa) + (substitute-keyword-arguments arguments ((#:configure-flags flags #~'()) #~(cons* "-Dglvnd=true" #$flags)) ((#:phases phases #~%standard-phases) |
