2013-01-05 18:47:50 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 07:34:52 -05:00
|
|
|
;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2014-05-22 15:58:08 -04:00
|
|
|
;;; Copyright © 2013, 2014 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)
|
monads: Move '%store-monad' and related procedures where they belong.
This turns (guix monads) into a generic module for monads, and moves the
store monad and related monadic procedures in their corresponding
module.
* guix/monads.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file, package-file, package->derivation,
package->cross-derivation, origin->derivation, imported-modules,
compiled, modules, built-derivations, run-with-store): Move to...
* guix/store.scm (store-return, store-bind, %store-monad, store-lift,
text-file, interned-file): ... here.
(%guile-for-build): New variable.
(run-with-store): Moved from monads.scm. Remove default value for
#:guile-for-build.
* guix/packages.scm (default-guile): Export.
(set-guile-for-build): New procedure.
(package-file, package->derivation, package->cross-derivation,
origin->derivation): Moved from monads.scm.
* guix/derivations.scm (%guile-for-build): Remove.
(imported-modules): Rename to...
(%imported-modules): ... this.
(compiled-modules): Rename to...
(%compiled-modules): ... this.
(built-derivations, imported-modules, compiled-modules): New
procedures.
* gnu/services/avahi.scm, gnu/services/base.scm, gnu/services/dbus.scm,
gnu/services/dmd.scm, gnu/services/networking.scm,
gnu/services/ssh.scm, gnu/services/xorg.scm, gnu/system/install.scm,
gnu/system/linux-initrd.scm, gnu/system/shadow.scm, guix/download.scm,
guix/gexp.scm, guix/git-download.scm, guix/profiles.scm,
guix/svn-download.scm, tests/monads.scm: Adjust imports accordingly.
* guix/monad-repl.scm (default-guile-derivation): New procedure.
(store-monad-language, run-in-store): Use it.
* build-aux/hydra/gnu-system.scm (qemu-jobs): Add explicit
'set-guile-for-build' call.
* guix/scripts/archive.scm (derivation-from-expression): Likewise.
* guix/scripts/build.scm (options/resolve-packages): Likewise.
* guix/scripts/environment.scm (guix-environment): Likewise.
* guix/scripts/system.scm (guix-system): Likewise.
* doc/guix.texi (The Store Monad): Adjust module names accordingly.
2015-01-14 07:34:52 -05:00
|
|
|
#:use-module (guix store)
|
Use #:prefix instead of #:renamer with 'symbol-prefix-proc'.
* gnu/packages/abiword.scm, gnu/packages/admin.scm, gnu/packages/aidc.scm,
gnu/packages/backup.scm, gnu/packages/bittorrent.scm,
gnu/packages/boost.scm, gnu/packages/compression.scm,
gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/dc.scm, gnu/packages/emacs.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/geeqie.scm,
gnu/packages/ghostscript.scm, gnu/packages/gimp.scm,
gnu/packages/gkrellm.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gnutls.scm, gnu/packages/gnuzilla.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/gv.scm, gnu/packages/image.scm,
gnu/packages/indent.scm, gnu/packages/inkscape.scm,
gnu/packages/lesstif.scm, gnu/packages/links.scm, gnu/packages/lisp.scm,
gnu/packages/lsh.scm, gnu/packages/lsof.scm, gnu/packages/maths.scm,
gnu/packages/mp3.scm, gnu/packages/openssl.scm, gnu/packages/ots.scm,
gnu/packages/pciutils.scm, gnu/packages/pcre.scm, gnu/packages/pdf.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm, gnu/packages/slim.scm,
gnu/packages/ssh.scm, gnu/packages/texlive.scm, gnu/packages/vim.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wv.scm,
gnu/packages/xiph.scm, gnu/packages/xml.scm, gnu/packages/xorg.scm,
gnu/packages/yasm.scm, gnu/packages/zip.scm,
guix/build/cmake-build-system.scm, guix/build/perl-build-system.scm,
guix/build/python-build-system.scm, guix/download.scm: Replaces uses of
#:renamer and 'symbol-prefix-proc' with #:prefix.
2014-09-23 16:44:22 -04:00
|
|
|
#:use-module ((guix build download) #:prefix build:)
|
2014-05-01 15:07:52 -04:00
|
|
|
#:use-module (guix monads)
|
|
|
|
#:use-module (guix gexp)
|
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/"
|
2014-11-26 13:52:11 -05:00
|
|
|
"ftp://mirrors.dotsrc.org/gcrypt/"
|
2012-11-12 17:20:06 -05:00
|
|
|
"ftp://mirror.cict.fr/gnupg/"
|
2014-11-26 13:52:11 -05:00
|
|
|
"http://artfiles.org/gnupg.org"
|
|
|
|
"ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/"
|
|
|
|
"ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/"
|
|
|
|
"http://www.crysys.hu/"
|
|
|
|
"ftp://ftp.hi.is/pub/mirrors/gnupg/"
|
|
|
|
"ftp://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/"
|
|
|
|
"ftp://ftp.bit.nl/mirror/gnupg/"
|
|
|
|
"ftp://ftp.surfnet.nl/pub/security/gnupg/"
|
|
|
|
"ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.gnupg.org/"
|
|
|
|
"ftp://ftp.sunet.se/pub/security/gnupg/"
|
|
|
|
"ftp://mirror.switch.ch/mirror/gnupg/"
|
|
|
|
"ftp://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/"
|
|
|
|
"ftp://ftp.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/"
|
|
|
|
"ftp://ftp.ring.gr.jp/pub/net/gnupg/"
|
|
|
|
"ftp://ftp.gnupg.org/gcrypt/")
|
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://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/")
|
2015-02-12 06:58:11 -05:00
|
|
|
(cran
|
|
|
|
;; Arbitrary mirrors from http://cran.r-project.org/mirrors.html
|
|
|
|
;; This one automatically redirects to servers worldwide
|
|
|
|
"http://cran.rstudio.com/"
|
|
|
|
"http://cran.univ-lyon1.fr/"
|
|
|
|
"http://cran.r-mirror.de/"
|
|
|
|
"http://cran.ism.ac.jp/"
|
|
|
|
"http://cran.stat.auckland.ac.nz/"
|
|
|
|
"http://cran.mirror.ac.za/"
|
|
|
|
"http://cran.csie.ntu.edu.tw/")
|
2014-05-22 15:58:08 -04:00
|
|
|
(imagemagick
|
|
|
|
;; from http://www.imagemagick.org/script/download.php
|
|
|
|
;; (without mirrors that are unavailable or not up to date)
|
|
|
|
;; mirrors keeping old versions at the top level
|
|
|
|
"ftp://sunsite.icm.edu.pl/packages/ImageMagick/"
|
|
|
|
;; mirrors moving old versions to "legacy"
|
|
|
|
"http://mirrors-au.go-parts.com/mirrors/ImageMagick/"
|
|
|
|
"ftp://mirror.aarnet.edu.au/pub/imagemagick/"
|
2013-06-19 13:27:23 -04:00
|
|
|
"http://mirror.checkdomain.de/imagemagick/"
|
2014-05-22 15:58:08 -04:00
|
|
|
"ftp://ftp.kddlabs.co.jp/graphics/ImageMagick/"
|
|
|
|
"ftp://ftp.u-aizu.ac.jp/pub/graphics/image/ImageMagick/imagemagick.org/"
|
|
|
|
"ftp://ftp.nluug.nl/pub/ImageMagick/"
|
|
|
|
"http://ftp.surfnet.nl/pub/ImageMagick/"
|
|
|
|
"http://mirror.searchdaimon.com/ImageMagick"
|
|
|
|
"ftp://ftp.tpnet.pl/pub/graphics/ImageMagick/"
|
|
|
|
"http://mirrors-ru.go-parts.com/mirrors/ImageMagick/"
|
2013-06-19 13:27:23 -04:00
|
|
|
"http://mirror.is.co.za/pub/imagemagick/"
|
2014-05-22 15:58:08 -04:00
|
|
|
"http://mirrors-uk.go-parts.com/mirrors/ImageMagick/"
|
|
|
|
"http://mirrors-usa.go-parts.com/mirrors/ImageMagick/"
|
|
|
|
"ftp://ftp.fifi.org/pub/ImageMagick/"
|
|
|
|
"http://www.imagemagick.org/download/"
|
|
|
|
;; one legacy location as a last resort
|
|
|
|
"http://www.imagemagick.org/download/legacy/")
|
2013-10-05 10:45:39 -04:00
|
|
|
(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
|
|
|
|
2014-05-01 15:07:52 -04:00
|
|
|
(define (gnutls-package)
|
2014-08-23 16:57:16 -04:00
|
|
|
"Return the default GnuTLS package."
|
2014-05-01 15:07:52 -04:00
|
|
|
(let ((module (resolve-interface '(gnu packages gnutls))))
|
|
|
|
(module-ref module 'gnutls)))
|
2012-11-12 17:20:06 -05:00
|
|
|
|
2015-01-14 08:42:10 -05:00
|
|
|
(define* (url-fetch url hash-algo hash
|
2012-11-12 17:10:26 -05:00
|
|
|
#:optional name
|
2015-01-14 08:42:10 -05:00
|
|
|
#:key (system (%current-system))
|
|
|
|
(guile (default-guile))
|
2012-11-12 17:20:06 -05:00
|
|
|
(mirrors %mirrors))
|
2015-01-14 08:42:10 -05:00
|
|
|
"Return a fixed-output derivation 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 different file name.
|
2012-11-12 17:20:06 -05:00
|
|
|
|
|
|
|
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
|
2015-01-14 08:42:10 -05:00
|
|
|
must be a list of symbol/URL-list pairs.
|
2012-11-12 17:10:26 -05:00
|
|
|
|
2015-01-14 08:42:10 -05:00
|
|
|
Alternately, when URL starts with file://, return the corresponding file name
|
|
|
|
in the store."
|
2012-11-12 17:10:26 -05:00
|
|
|
(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)))))
|
|
|
|
|
2014-05-01 15:07:52 -04:00
|
|
|
(define builder
|
|
|
|
#~(begin
|
2015-03-28 12:56:27 -04:00
|
|
|
#+(if need-gnutls?
|
2014-05-01 15:07:52 -04:00
|
|
|
|
|
|
|
;; Add GnuTLS to the inputs and to the load path.
|
|
|
|
#~(eval-when (load expand eval)
|
|
|
|
(set! %load-path
|
2015-03-28 12:56:27 -04:00
|
|
|
(cons (string-append #+(gnutls-package)
|
2014-10-30 10:46:36 -04:00
|
|
|
"/share/guile/site/"
|
|
|
|
(effective-version))
|
2014-05-01 15:07:52 -04:00
|
|
|
%load-path)))
|
|
|
|
#~#t)
|
|
|
|
|
|
|
|
(use-modules (guix build download))
|
|
|
|
(url-fetch '#$url #$output
|
|
|
|
#:mirrors '#$mirrors)))
|
|
|
|
|
2014-10-03 05:02:11 -04:00
|
|
|
(let ((uri (and (string? url) (string->uri url))))
|
|
|
|
(if (or (and (string? url) (not uri))
|
|
|
|
(and uri (memq (uri-scheme uri) '(#f file))))
|
2015-01-14 08:42:10 -05:00
|
|
|
(interned-file (if uri (uri-path uri) url)
|
|
|
|
(or name file-name))
|
|
|
|
(mlet %store-monad ((guile (package->derivation guile system)))
|
2014-10-03 05:02:11 -04:00
|
|
|
(gexp->derivation (or name file-name) builder
|
2015-01-14 08:42:10 -05:00
|
|
|
#:guile-for-build guile
|
2014-10-03 05:02:11 -04:00
|
|
|
#:system system
|
|
|
|
#:hash-algo hash-algo
|
|
|
|
#:hash hash
|
|
|
|
#:modules '((guix build download)
|
|
|
|
(guix build utils)
|
|
|
|
(guix ftp-client))
|
2014-03-05 17:25:37 -05:00
|
|
|
|
2014-10-03 05:02:11 -04:00
|
|
|
;; In general, offloading downloads is not a good idea.
|
2014-10-16 17:39:54 -04:00
|
|
|
;;#:local-build? #t
|
|
|
|
;; FIXME: The above would also disable use of
|
|
|
|
;; substitutes, so comment it out; see
|
|
|
|
;; <https://bugs.gnu.org/18747>.
|
2015-01-14 08:42:10 -05:00
|
|
|
)))))
|
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))
|
|
|
|
|
2014-03-11 17:09:31 -04:00
|
|
|
(if (or (not uri) (memq (uri-scheme uri) '(file #f)))
|
|
|
|
(add-to-store store name #f "sha256"
|
|
|
|
(if uri (uri-path uri) url))
|
2013-10-12 10:39:10 -04:00
|
|
|
(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
|