diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-28 17:56:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-15 10:19:47 +0200 |
commit | 1590e8a1dda793a16d9c70a666b0a8b5d41a94f5 (patch) | |
tree | c7210ae0becf363218ed8d9f4eb13076c789b8e1 /guix/cvs-download.scm | |
parent | 691cb22b1b4be122fc67d51c890e9fbf1643a182 (diff) |
packages: Refer to the native tools when handling sources and downloads.
* guix/packages.scm (patch-and-repack)[build]: Change most #$ to #+.
* guix/cvs-download.scm (cvs-fetch)[build]: Likewise.
* guix/download.scm (url-fetch)[builder]: Likewise.
* guix/git-download.scm (git-fetch)[build]: Likewise.
* guix/svn-download.scm (svn-fetch)[build]: Likewise.
Diffstat (limited to 'guix/cvs-download.scm')
-rw-r--r-- | guix/cvs-download.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/cvs-download.scm b/guix/cvs-download.scm index 8a0d479fa4..72478dd2c2 100644 --- a/guix/cvs-download.scm +++ b/guix/cvs-download.scm @@ -66,7 +66,7 @@ HASH-ALGO (a symbol). Use NAME as the file name, or a generic name if #f." '#$(cvs-reference-module ref) '#$(cvs-reference-revision ref) #$output - #:cvs-command (string-append #$cvs "/bin/cvs")))) + #:cvs-command (string-append #+cvs "/bin/cvs")))) (mlet %store-monad ((guile (package->derivation guile system))) (gexp->derivation (or name "cvs-checkout") build |