ui: 'show-what-to-build' returns two values, for builds and downloads.
authorLudovic Courtès <ludo@gnu.org>
Sun, 22 Mar 2020 10:52:41 +0000 (11:52 +0100)
committerLudovic Courtès <ludo@gnu.org>
Sun, 22 Mar 2020 11:42:52 +0000 (12:42 +0100)
* guix/ui.scm (show-what-to-build): Return two values.

guix/ui.scm

index 12a998d..1c0dd11 100644 (file)
@@ -913,8 +913,10 @@ that the rest."
 derivations listed in DRV using MODE, a 'build-mode' value.  The elements of
 DRV can be either derivations or derivation inputs.
 
-Return #t if there's something to build, #f otherwise.  When USE-SUBSTITUTES?,
-check and report what is prerequisites are available for download."
+Return two values: a Boolean indicating whether there's something to build,
+and a Boolean indicating whether there's something to download.  When
+USE-SUBSTITUTES?, check and report what is prerequisites are available for
+download."
   (define inputs
     (map (match-lambda
            ((? derivation? drv) (derivation-input drv))
@@ -1041,7 +1043,7 @@ check and report what is prerequisites are available for download."
 
     (check-available-space installed-size)
 
-    (pair? build/full)))
+    (values (pair? build/full) (pair? download))))
 
 (define show-what-to-build*
   (store-lift show-what-to-build))