summaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2022-03-15 18:00:56 -0400
committerMathieu Othacehe <othacehe@gnu.org>2022-03-22 15:29:32 +0100
commit18119fe288166ff480ca27a1351b09e9c31c1463 (patch)
treee5fbc9862e6cef3cb4ac7975cd80fb96a1571ef1 /guix/packages.scm
parentbd952b47afb1fef46591dba7701ad7928705a4be (diff)
downloadguix-patches-18119fe288166ff480ca27a1351b09e9c31c1463.tar
guix-patches-18119fe288166ff480ca27a1351b09e9c31c1463.tar.gz
packages: Clarify comment about build-system package record field.
* guix/packages.scm (<package>): Clarify that what goes in the build-system package record field is a build-system record instance. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 1c63eb2d3e..a79b36d03d 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -531,7 +531,7 @@ Texinfo. Otherwise, return the string."
(name package-name) ; string
(version package-version) ; string
(source package-source) ; <origin> instance
- (build-system package-build-system) ; build system
+ (build-system package-build-system) ; <build-system> instance
(arguments package-arguments ; arguments for the build method
(default '()) (thunked))