From 6ae218e4432e186e63c7ca48d1fdcde50414bfc6 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sat, 21 Mar 2026 00:04:39 +0800 Subject: 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. --- nongnu/packages/nvidia.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nongnu/packages/nvidia.scm') 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: ;; @@ -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) -- cgit v1.3