summaryrefslogtreecommitdiff
path: root/website/www/donate.scm
blob: d5214347f7c2ed81ad747a9b9ab3cb3854e45952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
;;; GuixSD website --- GNU's advanced distro website
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
;;; Initially written by Luis Felipe López Acevedo <felipe.lopez@openmailbox.org>
;;; who waives all copyright interest on this file.
;;;
;;; This file is part of GuixSD website.
;;;
;;; GuixSD website is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU Affero General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GuixSD website is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU Affero General Public License for more details.
;;;
;;; You should have received a copy of the GNU Affero General Public License
;;; along with GuixSD website.  If not, see <http://www.gnu.org/licenses/>.

(define-module (www donate)
  #:use-module (www utils)
  #:use-module (www shared)
  #:export (donate-page))

(define fsf
  `(a (@ (href "https://www.fsf.org/")) "Free Software Foundation"))

(define (donate-page)
  `(html (@ (lang "en"))
	 ,(html-page-header "Home")
	 (body
	  ,(html-page-description)
	  ,(html-page-links)
	  (div (@ (id "content-box"))
	       (article
		(h1 "Donate")
		(p "The "
		   (a (@ (href "http://hydra.gnu.org/jobset/gnu/master"))
		      "build farm")
		   " of the Guix System Distribution runs on donated hardware
and hosting. Please consider helping the project with donations. ")
		(p "As the distribution grows (see the "
		   (a (@ (href ,(base-url "packages")))
		      "package list")
		   "), so do the computing and storage needs. We are looking for
donations of hardware and optionally hosting for the following kinds of
machines (they should be usable with exclusively free software): ")
		(ul (li "x86_64 machines, with on the order of 1\xa0TiB of
storage and 4\xa0GiB of RAM;")
		    (li "armv7 machines (such as the Novena) to more quickly
test and provide binaries for the " (tt "armhf-linux") " port;")
		    (li "mips64el machines to strengthen this port."))
		(p "Please get in touch with us through the "
		   (a (@ (href ,(base-url "about/#contact")))
		      "usual channels")
		   " or using the " (tt "guix-hardware@gnu.org")
                   " private alias to discuss any opportunities. ")
		(h2 (@ (id "hardware-donors")) "Thanks to the donors!")
		(p "The table below summarizes hardware and hosting donations
that make the "
		   (a (@ (href "http://hydra.gnu.org"))
		      "build farm")
		   " for the Guix System Distribution a
reality.")
		(table (thead (tr (th "machine")
				  (th "system")
				  (th "donors")))
		       (tbody (tr (td "hydra.gnu.org")
				  (td "build farm front-end")
				  (td (ul (li ,fsf))))
			      (tr (td "hydra.gnunet.org")
				  (td "x86_64-linux, i686-linux")
				  (td (ul (li (a (@ (href "https://gnunet.org/fsnsg"))
						 "Free Secure Network Systems
Group")
					      " at the "
					      (a (@ (href "https://www.tum.de/"))
						 "Technische Universität
München")))))
			      (tr (td "chapters.gnu.org")
				  (td "x86_64-linux, i686-linux")
				  (td (ul (li (a (@ (href "https://es.gnu.org"))
						 "GNU\xa0España")
					      " (hardware)")
					  (li (a (@ (href "https://fsffrance.org/index.en.html"))
						 "FSF\xa0France")
					      " (hosting)"))))
			      (tr (td "wildebeest")
				  (td "x86_64-linux, i686-linux")
				  (td (ul (li "anonymous"))))
			      (tr (td "librenote")
				  (td "mips64el-linux")
				  (td (ul (li "Daniel Clark (hardware)")
					  (li "Mark H Weaver (hosting)"))))
                              (tr (td "hydra-slave0")
				  (td "mips64el-linux")
				  (td (ul (li ,fsf))))
                              (tr (td "guix.sjd.se")
                                  (td "x86_64-linux, i686-linux")
                                  (td (ul (li (a (@ (href
                                                     "http://josefsson.org"))
                                                 "Simon Josefsson")))))
                              (tr (td "hydra-slave1")
                                  (td "armhf-linux")
                                  (td (ul (li "Steve Sprang (hardware)")
                                          ;; XXX: Eventually move to the FSF?
                                          (li "Mark H Weaver (hosting)"))))
                              (tr (td "n/a")   ;update once it's up & running
                                  (td "armhf-linux")
                                  (td (ul (li (a (@ (href "http://harmoninstruments.com/"))
                                                 "Harmon Instruments")
                                              " (hardware)")
                                          (li "Mark H Weaver (hosting)"))))))))
	  ,(html-page-footer))))