diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-21 23:41:11 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-21 23:49:53 +0100 |
commit | 9b5b5c17409ce0174d171903f03c1d53dfb455c5 (patch) | |
tree | 0ebe2784ba7778760740288504871ac0d1bc9110 /guix/packages.scm | |
parent | 0dbd88db3933fac9c79adb107ab4a6932f33ea99 (diff) | |
download | gnu-guix-9b5b5c17409ce0174d171903f03c1d53dfb455c5.tar gnu-guix-9b5b5c17409ce0174d171903f03c1d53dfb455c5.tar.gz |
Add (guix git-download).
* guix/git-download.scm, guix/build/git.scm: New files.
* Makefile.am (MODULES): Add them.
* guix/packages.scm (<origin>): Fix comment for 'method' field.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index daf431f5e4..d345900f79 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -106,7 +106,7 @@ origin make-origin origin? (uri origin-uri) ; string - (method origin-method) ; symbol + (method origin-method) ; procedure (sha256 origin-sha256) ; bytevector (file-name origin-file-name (default #f)) ; optional file name (patches origin-patches (default '())) ; list of file names |