summaryrefslogtreecommitdiff
path: root/website/www/help.scm
blob: 556f77a6e6bed5db1c885de08e875d73daddb201 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
;;; 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 help)
  #:use-module (www utils)
  #:use-module (www shared)
  #:export (help-page))

(define (help-page)
  `(html (@ (lang "en"))
	 ,(html-page-header "Help" #:css "help.css")
	 (body
	  ,(html-page-description)
	  ,(html-page-links)
	  (div (@ (id "content-box"))
	       (article
		(h1 "Help")
		(div (@ (class "text-center"))
		     (div (@ (class "summary-box"))
			  (div (@ (class "text-center"))
			       (img (@ (src ,(image-url "guixsd-manual-icon.png"))
				       (alt ""))))
			  (h2 "GuixSD Manual")
			  (p "The documentation about the Guix System
Distribution is available online as part of the GNU Guix package manager
manual.")
			  (a (@ (href ,(guix-url "manual/html_node/GNU-Distribution.html"))
				(class "hlink-more-dark"))
			     "Read the manual"))
		     (div (@ (class "summary-box"))
			  (div (@ (class "text-center"))
			       (img (@ (src ,(image-url "guix-manual-icon.png"))
				       (alt ""))))
			  (h2 "GNU Guix Manual")
			  (p "Documentation for the GNU Guix package manager is
available online. You may also find more information about Guix by running "
			     (em "info\xa0guix")
			     ".")
			  (a (@ (href ,(guix-url "manual"))
				(class "hlink-more-dark"))
			     "Read the manual"))
		     (div (@ (class "summary-box"))
			  (div (@ (class "text-center"))
			       (img (@ (src ,(image-url "library-icon.png"))
				       (alt ""))))
			  (h2 "GNU Manuals")
			  (p "GuixSD is a distribution of the "
			     (a (@ (href ,(gnu-url ""))) "GNU operating system")
			     ". Most GNU software is documented and the
documentation is available online in various formats. ")
			  (a (@ (href ,(gnu-url "doc/doc.en.html"))
				(class "hlink-more-dark"))
			     "Browse the manuals"))
		     (div (@ (class "summary-box"))
			  (div (@ (class "text-center"))
			       (img (@ (src ,(image-url "chat-icon.png"))
				       (alt ""))))
			  (h2 "IRC Chat")
			  (p "For real-time support from the community, you can
connect to the "
			     (em "#guix")
			     " channel on irc.freenode.net. There you can get
help about anything related to both the Guix System Distribution and GNU Guix.")
			  (p "The "
			     (em "#guix")
			     " channel is logged. Previous conversations can be
browsed online. See the "
			     (a (@ (href "https://gnunet.org/bot/log/guix/"))
				"channel logs")
			     ". ")
			  (a (@ (href "https://webchat.freenode.net/?channels=%23guix")
				(class "hlink-more-dark"))
			     "Connect"))
		     (div (@ (class "summary-box"))
			  (div (@ (class "text-center"))
			       (img (@ (src ,(image-url "email-icon.png"))
				       (alt ""))))
			  (h2 "Mailing lists")
			  (p "Email support from the community is also available
through the following mailing lists. The messages sent to the lists are public
and archived online.")
			  (p (a (@ (href "https://lists.gnu.org/mailman/listinfo/guix-devel"))
				(b "guix-devel"))
			     (small " ("
				    (a (@ (href "https://lists.gnu.org/archive/html/guix-devel"))
				       "archive")
				    ") ")
			     (br)
			     "Discussion about the development of GNU Guix and
the Guix System Distribution (GuixSD).")
			  (p (a (@ (href "https://lists.gnu.org/mailman/listinfo/bug-guix"))
				(b "bug-guix"))
			     (small " ("
				    (a (@ (href "https://lists.gnu.org/archive/html/bug-guix"))
				       "archive")
				    ") ")
			     (br)
			     "Bug reports for GNU Guix and the Guix System
Distribution. ")
			  (a (@ (href ,(base-url "about#contact"))
				(class "hlink-more-dark"))
			     "Check all the lists")))

		(h2 "Additional Documentation")
		(ul (li (a (@ (href "https://arxiv.org/abs/1305.4584"))
                           (i "Functional Package Management with Guix"))
			", presented at the "
			(a (@ (href "https://www-sop.inria.fr/members/Manuel.Serrano/conferences/els13.html"))
			   "2013 European Lisp Symposium (ELS)")
			", describes the rationale, design, and
implementation of Guix's packaging API.")
                    (li (a (@ (href "http://arxiv.org/abs/1506.02822"))
                           (i "Reproducible and User-Controlled Software
Environments in HPC with Guix"))
                        ", to be presented at the "
                        (a (@ (href "http://reppar.org/"))
                           "2015 International Workshop on Reproducibility in
Parallel Computing (RepPar)")
                        ", discusses the use of Guix in high-performance
computing (HPC).")
                    (li (a (@ (href
                               "http://nixos.org/~eelco/pubs/phd-thesis.pdf"))
                           (i "The Purely Functional Software Deployment
Model"))
                        ", 2006; this is Eelco Dolstra's seminal PhD thesis
about the Nix package manager, which "
                        (a (@ (href
                               ,(guix-url "manual/html_node/Acknowledgments.html")))
                           "Guix is based on") "."))

		(h2 (@ (id "talks")) "Talks")
		(ul (li "August 2015, "
                        (a (@ (href "http://reppar.org"))
                           "Workshop on Reproducibility in Parallel Computing
 (RepPar)")
                        ": "
                        (a (@ (href ,(slides-url
                                      "guix-reppar-20150825.pdf")))
                           "slides"))
                    (li "May 2015, "
                           (a (@ (href "http://opentechsummit.net/en.html"))
                              "OpenTechSummit")
                           ": "
                           (a (@ (href ,(slides-url "guix-opentechsummit-201505014.pdf")))
                              "slides"))
                    (li "February 2015, "
			(a (@ (href "https://fosdem.org/2015/schedule/event/the_emacs_of_distros/"))
			   "FOSDEM")
			": "
			(a (@ (href ,(slides-url "guix-fosdem-20150131.pdf")))
			   "slides")
			", "
			(a (@ (href "https://audio-video.gnu.org/video/misc/2015-01__GNU_Guix__The_Emacs_of_Distros.webm"))
			   "video")
			" (WebM; 47 minutes) ")
		    (li "August 2014, "
			(a (@ (href "https://audio-video.gnu.org/video/ghm2014/"))
			   "GNU Hackers Meeting")
			": "
			(a (@ (href ,(slides-url "guix-ghm-20140815.pdf")))
			   "slides")
			", "
			(a (@ (href "https://audio-video.gnu.org/video/ghm2014/2014-08--courtes--were-building-the-gnu-system--ghm.webm"))
			   "video")
			" (WebM; 60 minutes) ")
		    (li "July 2014, "
			(a (@ (href "https://www.open-bio.org/wiki/Codefest_2014"))
			   "Open Bioinformatics Codefest 2014")
			": "
			(a (@ (href ,(slides-url "guix-openbio-codefest-20140709.pdf")))
			   "slides"))
		    (li "February 2014, "
			(a (@ (href "https://fosdem.org/2014/schedule/event/gnuguix/"))
			   "FOSDEM")
			": "
			(a (@ (href ,(slides-url "guix-fosdem-20140201.pdf")))
			   "slides")
			", "
			(a (@ (href "https://video.fosdem.org/2014/H1302_Depage/Sunday/Growing_a_GNU_with_Guix.webm"))
			   "video")
			" (WebM; 55 minutes) ")
		    (li "August 2013, "
			(a (@ (href ,(gnu-url "ghm/2013/paris")))
			   "GNU Hackers Meeting")
			(ul (li (i "GNU Guix: Package without a
scheme!")
				", by Andreas: "
				(a (@ (href ,(slides-url "guix-ghm-andreas-20130823.pdf")))
				   "slides"))
			    (li (i "Guix, the Computing Freedom
Deployment Tool")
				", by Ludovic: "
				(a (@ (href ,(slides-url "guix-ghm-ludo-20130823.pdf")))
				   "slides")
				", "
				(a (@ (href "http://audio-video.gnu.org/video/ghm2013/Ludovic_Courtes-GNU_Guix_the_computing_freedom_deployment_tool_.webm"))
				   "video")
				" (WebM; 60 minutes, 127MB) ")))
		    (li "June 2013, "
			(a (@ (href "https://www-sop.inria.fr/members/Manuel.Serrano/conferences/els13.html"))
			   " European Lisp Symposium (ELS)")
			": "
			(a (@ (href ,(slides-url "guix-els-20130603.pdf")))
			   "slides")
			", "
			(a (@ (href "http://www.nicklevine.org/els2013/ludovic-courtes.mp3"))
			   "audio"))
		    (li "July 2012, "
			(a (@ (href ,(gnu-url "ghm/2012/ddorf")))
			   "GNU Hackers Meeting")
			": "
			(a (@ (href ,(slides-url "guix-ghm-20120721.pdf")))
			   "slides")
			", "
			(a (@ (href "https://audio-video.gnu.org/video/ghm2012/guix.ogv"))
			   "video")
			" (Ogg/"
			(a (@ (href "http://theora.org/")) "Theora")
			"; 84 minutes, 88.1MB)"))))
	  ,(html-page-footer))))