aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/web.scm
blob: a6ce42f2f87c006e405500aacd3858cf263cec06 (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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
(define-module (gn packages web)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages fonts)
  #:use-module (past packages python)
  #:use-module (gnu packages python)
  #:use-module (gnu packages readline)
  #:use-module (gnu packages tcl)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages web)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix utils)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system trivial)
  #:use-module (srfi srfi-1))

; <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>

(define-public web-jquery
  (package
    (name "web-jquery")
    (version "3.4.1") ; May 1, 2019
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/jquery/jquery.git")
               (commit version)))
        (file-name (git-file-name name version))
        (sha256
         (base32 "03pasw49xshwvcaa0iailv43jlyhkwhf19fnwmwlhyn4701kpx1d"))))
    (build-system trivial-build-system)
    (arguments
      `(#:modules ((guix build utils))
        #:builder
        (let* ((out (assoc-ref %outputs "out"))
               (targetdir (string-append out "/share/web/jquery"))
               (source (assoc-ref %build-inputs "source"))
               (dist (string-append source "/dist")))
          (begin
            (use-modules (guix build utils))
            (copy-recursively dist targetdir)))))
    (native-inputs `(("source" ,source)))
    (home-page "https://jquery.com/")
    (synopsis "JQuery web framework")
    (description "jQuery is a fast, small, and feature-rich JavaScript library.
It makes things like HTML document traversal and manipulation, event handling,
animation, and Ajax much simpler with an easy-to-use API that works across a
multitude of browsers.  With a combination of versatility and extensibility,
jQuery has changed the way that millions of people write JavaScript.")
    (license license:expat)))

(define-public web-bootstrap
  (package
    (name "web-bootstrap")
    (version "4.3.1") ; Feb. 13, 2019
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/twbs/bootstrap.git")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "18g76r53sa2ahcriy7jk5wvxd3s8qc4as87xwqvfkxibdn5ifrxs"))))
    (build-system trivial-build-system)
    (arguments
     `(#:modules ((guix build utils))
       #:builder
         (let* ((out (assoc-ref %outputs "out"))
                (name "bootstrap")
                (targetdir (string-append out "/share/web/" name))
                (source (assoc-ref %build-inputs "source"))
                (dist (string-append source "/dist")))
           (begin
             (use-modules (guix build utils))
             (copy-recursively dist targetdir)))))
    (native-inputs `(("source" ,source)))
    (home-page "https://getbootstrap.com/")
    (synopsis "Bootstrap web framework")
    (description "Bootstrap is an open source toolkit for developing
with HTML, CSS, and JS.  Quickly prototype your ideas or build your
entire app with our Sass variables and mixins, responsive grid system,
extensive prebuilt components, and powerful plugins built on jQuery.")
    (license license:expat)))

(define-public web-bootstrap-3
  (package
    (inherit web-bootstrap)
    (name "web-bootstrap")
    (version "3.4.1") ; Feb. 13, 2019
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/twbs/bootstrap.git")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "1wsv79rvzaacyf740mwmhxadpwf28pad711jhbxl26zgqjrpzcbp"))))
    (arguments
     `(#:modules ((guix build utils))
       #:builder
       (begin
         (use-modules (guix build utils))
         (let* ((out (assoc-ref %outputs "out"))
                (name "bootstrap")
                (targetdir (string-append out "/share/web/" name))
                (source (assoc-ref %build-inputs "source"))
                (dist (string-append source "/dist")))
           (copy-recursively dist targetdir)
           (substitute* (find-files (string-append targetdir "/css") ".")
             (("../fonts") (string-append targetdir "/fonts")))
           #t))))
    (native-inputs `(("source" ,source)))))

(define-public web-bootstrap-3.3
  (package
    (inherit web-bootstrap-3)
    (name "web-bootstrap")
    (version "3.3.7") ; July 25, 2016
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/twbs/bootstrap.git")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "0li7vdr4avz34b9xvwk7skbvnvzbx002cw5nfm7iwvi1wk8v5bri"))))
    (native-inputs `(("source" ,source)))))

(define-public web-bootstrap-native
  (let ((commit "2e48d7ee29d4063e3bd2024ff83ddc50a550c4dd"))
    (package
      (name "web-bootstrap-native")
      (version (string-append "4.0.0" "-beta-" (string-take commit 7))) ; Sept, 8, 2017
      (source (origin
                (method git-fetch)
                (uri (git-reference
                       (url "https://github.com/thednp/bootstrap.native.git")
                       (commit commit)))
                (file-name (string-append name "-" commit))
                (sha256
                 (base32
                  "1hkyibyfby0mnkavr3xbmr20kb88wy6jw28b206pd236xnp2qkx0"))))
      (build-system trivial-build-system)
      (arguments
       `(#:modules ((guix build utils))
         #:builder
         (let* ((out (assoc-ref %outputs "out"))
                (name "bootstrap-native")
                (targetdir (string-append out "/share/web/" name))
                (source (assoc-ref %build-inputs "source")))
           (begin
             (use-modules (guix build utils))
             (copy-recursively source targetdir)))))
      (native-inputs `(("source" ,source)))
      (home-page "https://github.com/thednp/bootstrap.native")
      (synopsis "Bootstrap minimal")
      (description "Bootstrap native does not use jquery.")
      (license license:expat))))

(define-public httpd-2.2
  (package
    (inherit httpd)
    (version "2.2.34")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://apache/httpd/httpd-"
                                 version ".tar.bz2"))
             (sha256
              (base32
               "0q4196krxbyaswl5yzmm0r5ry2dijfhvxjdld3bl0mxcvzaq6cg5"))))
    (inputs
     `(("openssl" ,openssl-1.0)
       ,@(alist-delete "openssl" (package-inputs httpd))))
    (arguments
     (substitute-keyword-arguments (package-arguments httpd)
       ((#:configure-flags flags)
        `(cons "--enable-mods-shared=most" ,flags))))))

(define-public mod-python
  (let ((commit "902bb8700e2c45ffd96b78e2f1146a3c101be7f5")
        (revision "1"))
    (package
      (name "mod-python")
      (version (git-version "3.5.0" revision commit))
      (source
        (origin
          (method git-fetch)
          (uri (git-reference
                 (url "https://github.com/grisha/mod_python.git")
                 (commit commit)))
          (file-name (git-file-name name version))
          (sha256
           (base32
            "0lqlpldw11dml24n05305xzpbjlkay497djjczvgsj5v8djkxcq0"))))
      (build-system gnu-build-system)
      (arguments
       '(#:tests? #f ; tests require a running apache server
         #:phases
         (modify-phases %standard-phases
           (add-after 'unpack 'patch-source
             (lambda* (#:key outputs #:allow-other-keys)
               (let ((out    (assoc-ref outputs "out")))
                 (substitute* "Makefile.in"
                   ;; Don't use httpd's prefix
                   (("LIBEXECDIR=.*") (string-append "LIBEXECDIR=" out "/modules\n")))
                 (substitute* "scripts/Makefile.in"
                   (("BINDIR=.*") (string-append "BINDIR=" out "/bin")))
                 (substitute* "dist/setup.py.in"
                   ;; we want out modules dir, not httpd's
                   ;; If we want SYSCONFDIR to be the same as httpd's :
                   ;; (("@SYSCONFDIR@") (string-append (assoc-ref %build-inputs "httpd") "/etc/httpd"))
                   (("@LIBEXECDIR@") (string-append out "/modules")))
                 (substitute* "dist/Makefile.in"
                   (("\\$\\(DESTDIR\\)") "/")
                   (("--root") (string-append "--prefix=" out " --root"))))
               #t)))))
      (inputs
       `(("httpd" ,httpd)
         ("readline" ,readline)
         ("python" ,python-2))) ; does not seem to build with python3.7+
      (native-inputs `(("flex" ,(@ (gnu packages flex) flex))))
      (home-page "http://modpython.org/")
      (synopsis "Apache/Python Integration")
      (description "Mod_python is an Apache module that embeds the Python
interpreter within the server.  With mod_python you can write web-based
applications in Python that will run many times faster than traditional CGI and
will have access to advanced features such as ability to retain database
connections and other data between hits and access to Apache internals.")
      (license license:asl2.0))))

;; mod-python, built with python@2.4 and httpd@2.2
(define-public mod-python-24-httpd22
  (package
    (inherit mod-python)
    (name "mod-python-24-httpd22")
    (version "3.3.1")
    (source
      (origin
        (method url-fetch)
        (uri (string-append "https://archive.apache.org/dist/httpd/"
                            "modpython/mod_python-" version ".tgz"))
        (sha256
         (base32
          "0sss2xi6l1a2z8y6ji0cp8vgyvnhq8zrg0ilkvpj1mygbzyk28xd"))
        (patches
          (list
            (origin
              (method url-fetch)
              (uri "https://sources.debian.org/data/main/liba/libapache2-mod-python/3.3.1-11/debian/patches/04_autoconf_python_multiarch.patch")
              (file-name "mod-python-24-python-discovery.patch")
              (sha256
               (base32
                "0n3zp8j6q0mp0scry7d2hi0baqkim42bqq2c81p4l6mizsy8ry4h")))
            (origin
              (method url-fetch)
              (uri "https://sources.debian.org/data/main/liba/libapache2-mod-python/3.3.1-11/debian/patches/10_bts521965.patch")
              (file-name "mod-python-24-apr13-compat.patch")
              (sha256
               (base32
                "1k2cd2r13938fbm473sn0ivicaylkcqigyqn2wjir9ppch98kybg")))))))
    (arguments
     `(#:imported-modules ((guix build python-build-system)
                           ,@%gnu-build-system-modules)
       #:modules ((guix build gnu-build-system)
                  (guix build utils)
                  ((guix build python-build-system) #:prefix python:))
       #:phases
       (modify-phases %standard-phases
         (replace 'bootstrap
           (lambda* (#:key inputs #:allow-other-keys)
             (let* ((python (assoc-ref inputs "python"))
                    (tcl (assoc-ref inputs "tcl"))
                    (py-version (python:python-version python))
                    (tcl-version ,(version-major+minor (package-version tcl))))
               (substitute* "configure.in"
                 (("PY_LIBS=.*")
                  (string-append "PY_LIBS=-L" python "/lib/python" py-version "\n"))
                 (("PY_LDFLAGS=.*")
                  (string-append "PY_LDFLAGS=\"-lpython" py-version
                                 " -lreadline -lssl -lcrypto"
                                 " -ltk" tcl-version " -ltcl" tcl-version
                                 " -lgdbm -ltirpc -lnsl -lz\"\n"))
                 (("PY_INCLUDES=.*")
                  (string-append "PY_INCLUDES=-I" python "/include/python" py-version "\n")))
               (invoke "autoreconf" "-vfi"))))
         (add-after 'unpack 'patch-sources
           (lambda _
             ;; We can't import cPickle because we don't wrap with Python.
             (substitute* (find-files "." "\\.py$")
               (("import cPickle")
                "try:\n    import cPickle\nexcept:\n    import pickle as cPickle"))
             #t))
         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out")))
               (install-file "src/mod_python.so" (string-append out "/modules"))
               (with-directory-excursion "dist"
                 (invoke "python" "setup.py" "install" "--root=/"
                         (string-append "--prefix=" out)))
               #t))))))
    (native-inputs
     `(("autoconf" ,autoconf)
       ("automake" ,automake)
       ("flex" ,(@ (gnu packages flex) flex))))
    (inputs
     `(("httpd" ,httpd-2.2)
       ("python" ,python-2.4)
       ,@(package-inputs python-2.4)))))

(define-public mod-python-24
  (package
    (inherit mod-python-24-httpd22)
    (name "mod-python-24")
    (source
      (origin
        (inherit (package-source mod-python-24-httpd22))
        (patches
          (append
            (origin-patches (package-source mod-python-24-httpd22))
            (list
              (origin
                (method url-fetch)
                (uri "https://sources.debian.org/data/main/liba/libapache2-mod-python/3.3.1-11/debian/patches/20_apache24.patch")
                (file-name "mod-python-24-apache24-compat.patch")
                (sha256
                 (base32
                  "1bmcx7ki7y486x6490yppssr7dh3a0qyki6gjf2lj83gyh68c0r0"))))))))
    (arguments
     (substitute-keyword-arguments (package-arguments mod-python-24-httpd22)
       ((#:phases phases)
        `(modify-phases ,phases
           (add-after 'patch-sources 'patch-more-sources
             (lambda _
               (substitute* "test/test.py"
                 (("2\\.2") "2.4"))
               #t))))))
    (inputs
     `(("httpd" ,httpd)
       ("python" ,python-2.4)
       ,@(package-inputs python-2.4)))))

;; httpd and mod-python, built with python@2.4, in the same prefix
(define-public httpd-mod-python-24
  (package
    (inherit httpd)
    (name "httpd-mod-python-24")
    (arguments
     `(#:imported-modules ((guix build python-build-system)
                           ,@%gnu-build-system-modules)
       #:modules (((guix build gnu-build-system) #:prefix gnu:)
                  (guix build utils)
                  ,@%gnu-build-system-modules
                  ((guix build python-build-system) #:prefix python:))
       ,@(substitute-keyword-arguments (package-arguments httpd)
          ((#:phases phases '%standard-phases)
           `(modify-phases ,phases
              (add-after 'install 'unpack-mod-python
                (lambda* args
                  ((assoc-ref gnu:%standard-phases 'unpack)
                   #:source (assoc-ref %build-inputs "mod-python"))))
              (add-after 'unpack-mod-python 'change-directory
                (lambda _
                  ;; Make sure we're in the correct folder
                  (chdir "../mod_python-3.3.1")
                  ;; We can't import cPickle because we don't wrap with Python.
                  (substitute* (find-files "." "\\.py$")
                    (("import cPickle")
                     "try:\n    import cPickle\nexcept:\n    import pickle as cPickle"))
                  #t))
              (add-after 'change-directory 'bootstrap-mod-python
                (lambda* (#:key inputs #:allow-other-keys)
                  (let* ((python (assoc-ref inputs "python"))
                         (tcl (assoc-ref inputs "tcl"))
                         (py-version (python:python-version python))
                         (tcl-version ,(version-major+minor (package-version tcl))))
                    (substitute* "configure.in"
                      (("PY_LIBS=.*")
                       (string-append "PY_LIBS=-L" python "/lib/python" py-version "\n"))
                      (("PY_LDFLAGS=.*")
                       (string-append "PY_LDFLAGS=\"-lpython" py-version
                                      " -lreadline -lssl -lcrypto"
                                      " -ltk" tcl-version " -ltcl" tcl-version
                                      " -lgdbm -ltirpc -lnsl -lz\"\n"))
                      (("PY_INCLUDES=.*")
                       (string-append "PY_INCLUDES=-I" python "/include/python" py-version "\n")))
                    (invoke "autoreconf" "-vfi"))))
              (add-after 'bootstrap-mod-python 'patch-bin-file-mod-python
                (assoc-ref gnu:%standard-phases 'patch-usr-bin-file))
              (add-after 'patch-bin-file-mod-python 'patch-source-shebangs-mod-python
                (assoc-ref gnu:%standard-phases 'patch-source-shebangs))
              (add-after 'patch-source-shebangs-mod-python 'configure-mod-python
                (lambda* args
                  ((assoc-ref gnu:%standard-phases 'configure)
                   #:outputs %outputs
                   #:inputs %build-inputs
                   #:configure-flags (list (string-append "--with-apxs="
                                                          (assoc-ref %outputs "out")
                                                          "/bin/apxs")))))
              (add-after 'configure-mod-python 'patch-more-shebangs-mod-python
                (assoc-ref gnu:%standard-phases 'patch-generated-file-shebangs))
              (add-after 'patch-more-shebangs-mod-python 'make-mod-python
                (assoc-ref gnu:%standard-phases 'build))
              (add-after 'make-mod-python 'install-mod-python
                (lambda* (#:key outputs #:allow-other-keys)
                  (let ((out (assoc-ref outputs "out")))
                    (install-file "src/mod_python.so" (string-append out "/modules"))
                    (with-directory-excursion "dist"
                      (invoke "python" "setup.py" "install" "--root=/"
                              (string-append "--prefix=" out)))
                    #t)))
              (add-after 'install-mod-python 'wrap-programs
                (lambda* (#:key inputs outputs #:allow-other-keys)
                  (let* ((out (assoc-ref outputs "out"))
                         (python (assoc-ref inputs "python"))
                         (py-version (python:python-version python)))
                    ;; httpd needs to be able to find mod_python
                    (wrap-program (string-append out "/bin/httpd")
                      `("PYTHONPATH" ":" prefix
                        (,(string-append out "/lib/python" py-version "/site-packages"))))
                    #t))))))))
    (native-inputs
     `(,@(package-native-inputs httpd)
       ,@(package-native-inputs mod-python-24)
       ("mod-python" ,(package-source mod-python-24))))
    (inputs
     `(,@(alist-delete "openssl" (package-inputs httpd))
       ,@(package-inputs python-2.4)
       ("python" ,python-2.4)))))

;; httpd@2.2 and mod-python, built with python@2.4, in the same prefix
(define-public httpd22-mod-python-24
  (package
    (inherit httpd-mod-python-24)
    (name "httpd22-mod-python-24")
    (version (package-version httpd-2.2))
    (source
      (origin
        (inherit (package-source httpd-2.2))))
    (arguments
     (substitute-keyword-arguments (package-arguments httpd-mod-python-24)
       ((#:configure-flags flags)
        `(cons "--enable-mods-shared=most" ,flags))))
    (native-inputs
     `(,@(package-native-inputs httpd-2.2)
       ,@(package-native-inputs mod-python-24-httpd22)
       ("mod-python" ,(package-source mod-python-24-httpd22))))
    (inputs
     `(,@(package-inputs httpd-2.2)
       ,@(package-inputs python-2.4)
       ("python" ,python-2.4)))))

(define-public web-font-awesome
  (package
    (inherit font-awesome)
    (name "web-font-awesome")
    (arguments
     `(#:phases
       (modify-phases %standard-phases
        (replace 'install
          (lambda* (#:key outputs #:allow-other-keys)
            (let* ((out  (assoc-ref outputs "out"))
                   (dest (string-append out "/share/web/font-awesome")))
              (for-each
                (lambda (dir)
                  (copy-recursively dir (string-append dest dir)))
                '("css" "fonts" "less" "scss")))
            #t)))))))