mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
packages: ‘package-field-location’ returns a <location> for atoms.
Fixes guix/guix#1975. When using ‘read’, ‘package-field-location’ would not get source location for atoms such as symbols, typically making it impossible to get the location of the value of a field list (build-system gnu-build-system). This fixes that. * guix/packages.scm (field-value-location): New procedure. (package-field-location): Use it instead of inline code. * tests/packages.scm ("package-field-location"): Test the ‘build-system’ field. Reported-by: Nicolas Graves <ngraves@ngraves.fr> Change-Id: I98c694bb6f1999fa9ca80e145fa016640067af55
This commit is contained in:
parent
fd4402f09a
commit
a5ac56f883
2 changed files with 40 additions and 16 deletions
|
@ -292,6 +292,9 @@
|
|||
(member (read-at (package-field-location %bootstrap-guile 'version))
|
||||
(let ((version (package-version %bootstrap-guile)))
|
||||
(list version `(version ,version))))
|
||||
(member (read-at (package-field-location coreutils
|
||||
'build-system))
|
||||
'(build-system gnu-build-system))
|
||||
(not (package-field-location %bootstrap-guile 'does-not-exist)))))
|
||||
|
||||
;; Make sure we don't change the file name to an absolute file name.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue