2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-01-27 17:31:28 -05:00
|
|
|
;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-02-23 12:59:43 -05:00
|
|
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2012-11-12 17:10:26 -05:00
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-11-12 17:10:26 -05:00
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-11-12 17:10:26 -05:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-11-12 17:10:26 -05:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-05 18:47:50 -05:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-11-12 17:10:26 -05:00
|
|
|
|
|
|
|
(define-module (guix download)
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
#:use-module (guix packages)
|
2013-04-21 16:40:23 -04:00
|
|
|
#:use-module ((guix store) #:select (derivation-path? add-to-store))
|
|
|
|
#:use-module ((guix build download) #:renamer (symbol-prefix-proc 'build:))
|
2012-11-12 17:10:26 -05:00
|
|
|
#:use-module (guix utils)
|
2013-10-12 10:39:10 -04:00
|
|
|
#:use-module (web uri)
|
2013-01-20 16:28:38 -05:00
|
|
|
#:use-module (srfi srfi-1)
|
2012-11-12 17:20:06 -05:00
|
|
|
#:use-module (srfi srfi-26)
|
2012-11-13 16:57:36 -05:00
|
|
|
#:export (%mirrors
|
2013-04-21 16:40:23 -04:00
|
|
|
url-fetch
|
|
|
|
download-to-store))
|
2012-11-12 17:10:26 -05:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; Produce fixed-output derivations with data fetched over HTTP or FTP.
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
2012-11-12 17:20:06 -05:00
|
|
|
(define %mirrors
|
|
|
|
;; Mirror lists used when `mirror://' URLs are passed.
|
|
|
|
(let* ((gnu-mirrors
|
|
|
|
'(;; This one redirects to a (supposedly) nearby and (supposedly)
|
|
|
|
;; up-to-date mirror.
|
|
|
|
"http://ftpmirror.gnu.org/"
|
|
|
|
|
|
|
|
"ftp://ftp.cs.tu-berlin.de/pub/gnu/"
|
|
|
|
"ftp://ftp.funet.fi/pub/mirrors/ftp.gnu.org/gnu/"
|
|
|
|
|
|
|
|
;; This one is the master repository, and thus it's always
|
|
|
|
;; up-to-date.
|
|
|
|
"http://ftp.gnu.org/pub/gnu/")))
|
|
|
|
`((gnu ,@gnu-mirrors)
|
|
|
|
(gcc
|
|
|
|
"ftp://ftp.nluug.nl/mirror/languages/gcc/"
|
|
|
|
"ftp://ftp.fu-berlin.de/unix/languages/gcc/"
|
|
|
|
"ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/"
|
|
|
|
"ftp://gcc.gnu.org/pub/gcc/"
|
|
|
|
,@(map (cut string-append <> "/gcc") gnu-mirrors))
|
|
|
|
(gnupg
|
|
|
|
"ftp://gd.tuwien.ac.at/privacy/gnupg/"
|
|
|
|
"ftp://gnupg.x-zone.org/pub/gnupg/"
|
|
|
|
"ftp://ftp.gnupg.cz/pub/gcrypt/"
|
|
|
|
"ftp://sunsite.dk/pub/security/gcrypt/"
|
|
|
|
"http://gnupg.wildyou.net/"
|
|
|
|
"http://ftp.gnupg.zone-h.org/"
|
|
|
|
"ftp://ftp.jyu.fi/pub/crypt/gcrypt/"
|
|
|
|
"ftp://trumpetti.atm.tut.fi/gcrypt/"
|
|
|
|
"ftp://mirror.cict.fr/gnupg/"
|
|
|
|
"ftp://ftp.strasbourg.linuxfr.org/pub/gnupg/")
|
2013-03-05 04:16:17 -05:00
|
|
|
(gnome
|
|
|
|
"http://ftp.belnet.be/ftp.gnome.org/"
|
|
|
|
"http://ftp.linux.org.uk/mirrors/ftp.gnome.org/"
|
|
|
|
"http://ftp.gnome.org/pub/GNOME/"
|
|
|
|
"http://mirror.yandex.ru/mirrors/ftp.gnome.org/")
|
2012-11-12 17:20:06 -05:00
|
|
|
(savannah
|
2012-12-07 15:06:03 -05:00
|
|
|
"http://download.savannah.gnu.org/releases/"
|
2012-11-12 17:20:06 -05:00
|
|
|
"ftp://ftp.twaren.net/Unix/NonGNU/"
|
|
|
|
"ftp://mirror.csclub.uwaterloo.ca/nongnu/"
|
|
|
|
"ftp://mirror.publicns.net/pub/nongnu/"
|
|
|
|
"ftp://savannah.c3sl.ufpr.br/"
|
|
|
|
"http://ftp.cc.uoc.gr/mirrors/nongnu.org/"
|
|
|
|
"http://ftp.twaren.net/Unix/NonGNU/"
|
|
|
|
"http://mirror.csclub.uwaterloo.ca/nongnu/"
|
|
|
|
"http://nongnu.askapache.com/"
|
|
|
|
"http://savannah.c3sl.ufpr.br/"
|
2013-06-27 16:36:23 -04:00
|
|
|
"http://www.centervenus.com/mirrors/nongnu/"
|
|
|
|
"http://download.savannah.gnu.org/releases-noredirect/")
|
2012-11-12 17:20:06 -05:00
|
|
|
(sourceforge
|
|
|
|
"http://prdownloads.sourceforge.net/"
|
|
|
|
"http://heanet.dl.sourceforge.net/sourceforge/"
|
|
|
|
"http://surfnet.dl.sourceforge.net/sourceforge/"
|
|
|
|
"http://dfn.dl.sourceforge.net/sourceforge/"
|
|
|
|
"http://mesh.dl.sourceforge.net/sourceforge/"
|
|
|
|
"http://ovh.dl.sourceforge.net/sourceforge/"
|
2012-12-16 18:18:15 -05:00
|
|
|
"http://osdn.dl.sourceforge.net/sourceforge/")
|
2012-11-27 15:55:53 -05:00
|
|
|
(kernel.org
|
|
|
|
"http://www.all.kernel.org/pub/"
|
|
|
|
"http://ramses.wh2.tu-dresden.de/pub/mirrors/kernel.org/"
|
|
|
|
"http://linux-kernel.uio.no/pub/"
|
|
|
|
"http://kernel.osuosl.org/pub/"
|
2013-08-25 14:49:03 -04:00
|
|
|
"ftp://ftp.funet.fi/pub/mirrors/ftp.kernel.org/pub/"
|
|
|
|
"http://ftp.be.debian.org/pub/"
|
|
|
|
"http://mirror.linux.org.au/")
|
2013-01-25 15:49:49 -05:00
|
|
|
(apache ; from http://www.apache.org/mirrors/dist.html
|
|
|
|
"http://www.eu.apache.org/dist/"
|
|
|
|
"http://www.us.apache.org/dist/"
|
|
|
|
"ftp://gd.tuwien.ac.at/pub/infosys/servers/http/apache/dist/"
|
|
|
|
"http://apache.belnet.be/"
|
|
|
|
"http://mirrors.ircam.fr/pub/apache/"
|
2014-01-27 17:31:28 -05:00
|
|
|
"http://apache-mirror.rbc.ru/pub/apache/"
|
|
|
|
|
|
|
|
;; As a last resort, try the archive.
|
|
|
|
"http://archive.apache.org/dist/")
|
2013-02-23 12:59:43 -05:00
|
|
|
(xorg ; from http://www.x.org/wiki/Releases/Download
|
2013-03-03 13:50:26 -05:00
|
|
|
"http://www.x.org/releases/" ; main mirrors
|
2013-02-23 12:59:43 -05:00
|
|
|
"ftp://mirror.csclub.uwaterloo.ca/x.org/" ; North America
|
|
|
|
"ftp://xorg.mirrors.pair.com/"
|
|
|
|
"http://mirror.csclub.uwaterloo.ca/x.org/"
|
|
|
|
"http://xorg.mirrors.pair.com/"
|
|
|
|
"http://mirror.us.leaseweb.net/xorg/"
|
|
|
|
"ftp://artfiles.org/x.org/" ; Europe
|
|
|
|
"ftp://ftp.chg.ru/pub/X11/x.org/"
|
|
|
|
"ftp://ftp.fu-berlin.de/unix/X11/FTP.X.ORG/"
|
|
|
|
"ftp://ftp.gwdg.de/pub/x11/x.org/"
|
|
|
|
"ftp://ftp.mirrorservice.org/sites/ftp.x.org/"
|
|
|
|
"ftp://ftp.ntua.gr/pub/X11/"
|
|
|
|
"ftp://ftp.piotrkosoft.net/pub/mirrors/ftp.x.org/"
|
|
|
|
"ftp://ftp.portal-to-web.de/pub/mirrors/x.org/"
|
|
|
|
"ftp://ftp.solnet.ch/mirror/x.org/"
|
|
|
|
"ftp://ftp.sunet.se/pub/X11/"
|
|
|
|
"ftp://gd.tuwien.ac.at/X11/"
|
|
|
|
"ftp://mi.mirror.garr.it/mirrors/x.org/"
|
|
|
|
"ftp://mirror.cict.fr/x.org/"
|
|
|
|
"ftp://mirror.switch.ch/mirror/X11/"
|
|
|
|
"ftp://mirrors.ircam.fr/pub/x.org/"
|
|
|
|
"ftp://x.mirrors.skynet.be/pub/ftp.x.org/"
|
|
|
|
"ftp://ftp.cs.cuhk.edu.hk/pub/X11" ; East Asia
|
|
|
|
"ftp://ftp.u-aizu.ac.jp/pub/x11/x.org/"
|
|
|
|
"ftp://ftp.yz.yamagata-u.ac.jp/pub/X11/x.org/"
|
|
|
|
"ftp://ftp.kaist.ac.kr/x.org/"
|
|
|
|
"ftp://mirrors.go-part.com/xorg/"
|
|
|
|
"http://x.cs.pu.edu.tw/"
|
2013-03-03 18:46:27 -05:00
|
|
|
"ftp://ftp.is.co.za/pub/x.org") ; South Africa
|
|
|
|
(cpan ; from http://www.cpan.org/SITES.html
|
|
|
|
"http://cpan.enstimac.fr/"
|
|
|
|
"ftp://ftp.ciril.fr/pub/cpan/"
|
|
|
|
"ftp://artfiles.org/cpan.org/"
|
|
|
|
"http://www.cpan.org/"
|
|
|
|
"ftp://cpan.rinet.ru/pub/mirror/CPAN/"
|
|
|
|
"http://cpan.cu.be/"
|
|
|
|
"ftp://cpan.inode.at/"
|
|
|
|
"ftp://cpan.iht.co.il/"
|
|
|
|
"ftp://ftp.osuosl.org/pub/CPAN/"
|
|
|
|
"ftp://ftp.nara.wide.ad.jp/pub/CPAN/"
|
|
|
|
"http://mirrors.163.com/cpan/"
|
2013-06-19 13:27:23 -04:00
|
|
|
"ftp://cpan.mirror.ac.za/")
|
|
|
|
(imagemagick ; from http://www.imagemagick.org/script/download.php
|
|
|
|
"http://mirror.checkdomain.de/imagemagick/"
|
|
|
|
"ftp://gd.tuwien.ac.at/pub/graphics/ImageMagick/"
|
|
|
|
"http://www.imagemagick.org/download"
|
|
|
|
"ftp://mirror.searchdaimon.com/ImageMagick"
|
|
|
|
"http://mirror.is.co.za/pub/imagemagick/"
|
2013-10-05 10:45:39 -04:00
|
|
|
"ftp://mirror.aarnet.edu.au/pub/imagemagick/")
|
|
|
|
(debian
|
|
|
|
"http://ftp.de.debian.org/debian/"
|
|
|
|
"http://ftp.fr.debian.org/debian/"
|
|
|
|
"http://ftp.debian.org/debian/"))))
|
2012-11-12 17:20:06 -05:00
|
|
|
|
2013-01-20 16:28:38 -05:00
|
|
|
(define (gnutls-derivation store system)
|
|
|
|
"Return the GnuTLS derivation for SYSTEM."
|
|
|
|
(let* ((module (resolve-interface '(gnu packages gnutls)))
|
|
|
|
(gnutls (module-ref module 'gnutls)))
|
|
|
|
(package-derivation store gnutls system)))
|
2012-11-12 17:20:06 -05:00
|
|
|
|
2012-11-12 17:10:26 -05:00
|
|
|
(define* (url-fetch store url hash-algo hash
|
|
|
|
#:optional name
|
2012-11-12 17:20:06 -05:00
|
|
|
#:key (system (%current-system)) guile
|
|
|
|
(mirrors %mirrors))
|
2012-11-12 17:10:26 -05:00
|
|
|
"Return the path of a fixed-output derivation in STORE that fetches
|
|
|
|
URL (a string, or a list of strings denoting alternate URLs), which is
|
|
|
|
expected to have hash HASH of type HASH-ALGO (a symbol). By default,
|
|
|
|
the file name is the base name of URL; optionally, NAME can specify a
|
2012-11-12 17:20:06 -05:00
|
|
|
different file name.
|
|
|
|
|
|
|
|
When one of the URL starts with mirror://, then its host part is
|
|
|
|
interpreted as the name of a mirror scheme, taken from MIRRORS; MIRRORS
|
|
|
|
must be a list of symbol/URL-list pairs."
|
2012-11-12 17:10:26 -05:00
|
|
|
(define builder
|
|
|
|
`(begin
|
|
|
|
(use-modules (guix build download))
|
2012-11-12 17:20:06 -05:00
|
|
|
(url-fetch ',url %output
|
|
|
|
#:mirrors ',mirrors)))
|
2012-11-12 17:10:26 -05:00
|
|
|
|
|
|
|
(define guile-for-build
|
|
|
|
(match guile
|
|
|
|
((? package?)
|
|
|
|
(package-derivation store guile system))
|
|
|
|
((and (? string?) (? derivation-path?))
|
|
|
|
guile)
|
|
|
|
(#f ; the default
|
2013-01-17 19:06:24 -05:00
|
|
|
(let* ((distro (resolve-interface '(gnu packages base)))
|
2012-11-12 17:10:26 -05:00
|
|
|
(guile (module-ref distro 'guile-final)))
|
|
|
|
(package-derivation store guile system)))))
|
|
|
|
|
|
|
|
(define file-name
|
|
|
|
(match url
|
|
|
|
((head _ ...)
|
|
|
|
(basename head))
|
|
|
|
(_
|
|
|
|
(basename url))))
|
|
|
|
|
2013-01-20 16:28:38 -05:00
|
|
|
(define need-gnutls?
|
|
|
|
;; True if any of the URLs need TLS support.
|
|
|
|
(let ((https? (cut string-prefix? "https://" <>)))
|
|
|
|
(match url
|
|
|
|
((? string?)
|
|
|
|
(https? url))
|
|
|
|
((url ...)
|
|
|
|
(any https? url)))))
|
|
|
|
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
(let* ((gnutls-drv (if need-gnutls?
|
|
|
|
(gnutls-derivation store system)
|
|
|
|
(values #f #f)))
|
|
|
|
(gnutls (and gnutls-drv
|
|
|
|
(derivation->output-path gnutls-drv "out")))
|
|
|
|
(env-vars (if gnutls
|
|
|
|
(let ((dir (string-append gnutls "/share/guile/site")))
|
|
|
|
;; XXX: `GUILE_LOAD_COMPILED_PATH' is overridden
|
|
|
|
;; by `build-expression->derivation', so we can't
|
|
|
|
;; set it here.
|
|
|
|
`(("GUILE_LOAD_PATH" . ,dir)))
|
|
|
|
'())))
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
(build-expression->derivation store (or name file-name) builder
|
|
|
|
#:system system
|
|
|
|
#:inputs (if gnutls-drv
|
|
|
|
`(("gnutls" ,gnutls-drv))
|
|
|
|
'())
|
2013-01-20 16:28:38 -05:00
|
|
|
#:hash-algo hash-algo
|
|
|
|
#:hash hash
|
|
|
|
#:modules '((guix build download)
|
|
|
|
(guix build utils)
|
|
|
|
(guix ftp-client))
|
|
|
|
#:guile-for-build guile-for-build
|
|
|
|
#:env-vars env-vars)))
|
2012-11-12 17:10:26 -05:00
|
|
|
|
2013-04-21 16:40:23 -04:00
|
|
|
(define* (download-to-store store url #:optional (name (basename url))
|
|
|
|
#:key (log (current-error-port)))
|
|
|
|
"Download from URL to STORE, either under NAME or URL's basename if
|
|
|
|
omitted. Write progress reports to LOG."
|
2013-10-12 10:39:10 -04:00
|
|
|
(define uri
|
|
|
|
(string->uri url))
|
|
|
|
|
|
|
|
(if (memq (uri-scheme uri) '(file #f))
|
|
|
|
(add-to-store store name #f "sha256" (uri-path uri))
|
|
|
|
(call-with-temporary-output-file
|
|
|
|
(lambda (temp port)
|
|
|
|
(let ((result
|
|
|
|
(parameterize ((current-output-port log))
|
|
|
|
(build:url-fetch url temp #:mirrors %mirrors))))
|
|
|
|
(close port)
|
|
|
|
(and result
|
|
|
|
(add-to-store store name #f "sha256" temp)))))))
|
2013-04-21 16:40:23 -04:00
|
|
|
|
2012-11-12 17:10:26 -05:00
|
|
|
;;; download.scm ends here
|