all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#65757] [PATCH] guix: packages: Support package/inherit by package-field-location.
@ 2023-09-05 14:37 Simon Tournier
  2023-09-06 20:41 ` bug#65757: " Maxim Cournoyer
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Tournier @ 2023-09-05 14:37 UTC (permalink / raw)
  To: 65757; +Cc: Simon Tournier, maxim.cournoyer

Fixes <https://issues.guix.gnu.org//65236>.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>.

* guix/packages.scm (package-field-location): Add package/inherit case.
---
 guix/packages.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index ba98bb0fb484..821eddb72d5d 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -761,7 +761,8 @@ (define (package-field-location package field)
               (lambda (port)
                 (go-to-location port line column)
                 (match (read port)
-                  (('package inits ...)
+                  ((or ('package inits ...)
+                       ('package/inherit inits ...))
                    (let ((field (assoc field inits)))
                      (match field
                        ((_ value)

base-commit: bedcdf0fb5ac035f696790827679406c7146396c
-- 
2.38.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-09-07  1:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-05 14:37 [bug#65757] [PATCH] guix: packages: Support package/inherit by package-field-location Simon Tournier
2023-09-06 20:41 ` bug#65757: " Maxim Cournoyer
2023-09-06 22:01   ` [bug#65757] " Simon Tournier
2023-09-07  1:55     ` Maxim Cournoyer

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.