guix: packages: Support package/inherit by package-field-location.
Fixes <https://issues.guix.gnu.org/65236>. * guix/packages.scm (package-field-location): Add package/inherit case. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reported-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>master
parent
65dcfb3f38
commit
d552c2508f
|
@ -761,7 +761,8 @@ object."
|
|||
(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)
|
||||
|
|
Reference in New Issue