diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-11-26 11:06:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-26 11:10:20 +0100 |
commit | 3b5829bbcb7ea3a76a4d2393f0b2cbfb6d1a5e37 (patch) | |
tree | 154995ced254d2850f8f25a5387d9626a2ddb084 /guix | |
parent | c23cf1832aba44c03ba50a6f318b0415a4437d53 (diff) |
git-download: Use 'git-minimal' instead of 'git'.
* guix/git-download.scm (git-package): Refer to 'git-minimal'.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/git-download.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/git-download.scm b/guix/git-download.scm index fa94fad8f8..072ab51538 100644 --- a/guix/git-download.scm +++ b/guix/git-download.scm @@ -60,7 +60,7 @@ (define (git-package) "Return the default Git package." (let ((distro (resolve-interface '(gnu packages version-control)))) - (module-ref distro 'git))) + (module-ref distro 'git-minimal))) (define* (git-fetch ref hash-algo hash #:optional name |