summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
author( <paren@disroot.org>2022-06-24 18:56:28 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2022-06-19 02:00:00 +0200
commitba95bbbac5fdf98b65a81242038ef051109dfe3c (patch)
tree79cd89d0387026cfcbaf8e3bf84f3f80e4028155 /guix
parentc67ea330d4cf3abfe59e36669b7c2a7864c5e355 (diff)
downloadguix-ba95bbbac5fdf98b65a81242038ef051109dfe3c.tar.gz
guix-ba95bbbac5fdf98b65a81242038ef051109dfe3c.tar.xz
build-system/dub: Fix configure docstring indentation.
* guix/build/dub-build-system.scm (configure): Reflow docstring. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
Diffstat (limited to 'guix')
-rw-r--r--guix/build/dub-build-system.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/guix/build/dub-build-system.scm b/guix/build/dub-build-system.scm
index a916afb0c4..08189bdee7 100644
--- a/guix/build/dub-build-system.scm
+++ b/guix/build/dub-build-system.scm
@@ -48,10 +48,10 @@
(_ #f)))
(define* (configure #:key inputs #:allow-other-keys)
- "Prepare one new directory with all the required dependencies.
- It's necessary to do this (instead of just using /gnu/store as the
- directory) because we want to hide the libraries in subdirectories
- lib/dub/... instead of polluting the user's profile root."
+ "Prepare one new directory with all the required dependencies. It's necessary
+to do this (instead of just using /gnu/store as the directory) because we want
+to hide the libraries in subdirectories lib/dub/... instead of polluting the
+user's profile root."
(let* ((dir (mkdtemp! "/tmp/dub.XXXXXX"))
(vendor-dir (string-append dir "/vendor")))
(setenv "HOME" dir)