workaround issues with armhf

Julien LepillerThu Mar 18 15:02:32+0100 2021

f126800

workaround issues with armhf

systems/ene.scm

2929
3030
(use-modules (gnu packages libunwind))
3131
(use-modules (gnu packages mail))
32+
(use-modules (gnu packages tor))
3233
(use-modules (gnu packages web))
3334
(use-modules (guix packages))
3435
(use-modules (guix utils))

7677
            (baud-rate "115200")
7778
            (term "vt100")
7879
            (tty "ttyS0")))
79-
        (service tor-service-type)
80+
        (service tor-service-type
81+
		 (tor-configuration
82+
		   (tor (package
83+
			  (inherit tor)
84+
			  (arguments
85+
			   `(#:tests? #f
86+
			     ,@(package-arguments tor)))))))
8087
        (tor-hidden-service "mail"
8188
                            '((25 "127.0.0.1:25")
8289
                              (143 "127.0.0.1:143")

99106
                           ("git.lepiller.eu")
100107
			   ("social.lepiller.eu")))
101108
        (service nginx-service-type)
102-
        (service php-fpm-service-type)
109+
        (service php-fpm-service-type
110+
		 (php-fpm-configuration
111+
		   ;; TODO: remove after guix doesn't complain about duplicate
112+
		   ;; groups.
113+
		   (group "php-fpm2")))
103114
        (service fcgiwrap-service-type
104115
                 (fcgiwrap-configuration
105116
                   (group "git")))

165176
                            (body
166177
                              (list
167178
                                "root /srv/http/git/public;"))))
168-
                        '("/css" "/images" "~* .*/manual/.*" "= /"
179+
                        '("/css" "/js" "/images" "~* .*/manual/.*" "= /"
169180
                          "= /index.html")))))))
170181
        (service static-web-site-service-type
171182
                 (static-web-site-configuration