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/printers.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/printers.scm')
| -rw-r--r-- | nongnu/packages/printers.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/nongnu/packages/printers.scm b/nongnu/packages/printers.scm index 5ee6f21..e7978ba 100644 --- a/nongnu/packages/printers.scm +++ b/nongnu/packages/printers.scm @@ -26,7 +26,9 @@ (find-files "." (lambda (file stat) (elf-file? file)))) (origin-snippet (package-source hplip)))))) - (inputs (alist-delete "python-pyqt" (package-inputs hplip))) + (inputs + (modify-inputs inputs + (delete "python-pyqt"))) (native-inputs (append `(("hplip-plugin" @@ -41,9 +43,9 @@ (sha256 (base32 "1an5s2i6fxzxxk46k39hkhfqq0kgy3b5adhm30p8l6k64pfnng0z"))))) - (package-native-inputs hplip))) + native-inputs)) (arguments - (substitute-keyword-arguments (package-arguments hplip) + (substitute-keyword-arguments arguments ((#:configure-flags cf) #~(delete "--enable-qt5" #$cf)) ((#:phases ph) |
