diff options
Diffstat (limited to 'guix/git-download.scm')
-rw-r--r-- | guix/git-download.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/git-download.scm b/guix/git-download.scm index b88339bed3..94b118a7b9 100644 --- a/guix/git-download.scm +++ b/guix/git-download.scm @@ -98,7 +98,8 @@ type HASH-ALGO (a symbol). Use NAME as the file name, or a generic name if (run-with-store store (gexp->derivation (or name "git-checkout") build #:system system - #:local-build? #t + ;; FIXME: See <https://bugs.gnu.org/18747>. + ;;#:local-build? #t #:hash-algo hash-algo #:hash hash #:recursive? #t |