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 /nonguix | |
| 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 'nonguix')
| -rw-r--r-- | nonguix/utils.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nonguix/utils.scm b/nonguix/utils.scm index 1bd0839..62a7baf 100644 --- a/nonguix/utils.scm +++ b/nonguix/utils.scm @@ -24,8 +24,7 @@ Only x86_64-linux and i686-linux are supported. ("x86_64-linux" (package (inherit package64) - (arguments `(#:system "i686-linux" - ,@(package-arguments package64))))) + (arguments `(#:system "i686-linux" ,@arguments)))) (_ package64))) (define (package-input-grafting replacements) |
