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>
This commit is contained in:
( 2022-06-24 18:56:28 +01:00 committed by Tobias Geerinckx-Rice
parent c67ea330d4
commit ba95bbbac5
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -48,10 +48,10 @@
(_ #f))) (_ #f)))
(define* (configure #:key inputs #:allow-other-keys) (define* (configure #:key inputs #:allow-other-keys)
"Prepare one new directory with all the required dependencies. "Prepare one new directory with all the required dependencies. It's necessary
It's necessary to do this (instead of just using /gnu/store as the to do this (instead of just using /gnu/store as the directory) because we want
directory) because we want to hide the libraries in subdirectories to hide the libraries in subdirectories lib/dub/... instead of polluting the
lib/dub/... instead of polluting the user's profile root." user's profile root."
(let* ((dir (mkdtemp! "/tmp/dub.XXXXXX")) (let* ((dir (mkdtemp! "/tmp/dub.XXXXXX"))
(vendor-dir (string-append dir "/vendor"))) (vendor-dir (string-append dir "/vendor")))
(setenv "HOME" dir) (setenv "HOME" dir)