blob: d3b7b22d406a859007ef1ae7ae67506833622743 (
plain) (
blame)
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
|
;; -*- fill-column: 120 -*-
(define-module (battering packages palemoon)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix build-system mozilla)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
#:use-module (gnu packages assembly)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)
#:use-module (gnu packages crypto)
#:use-module (gnu packages compression)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages linux)
#:use-module (gnu packages m4)
#:use-module (gnu packages nss)
#:use-module (gnu packages perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages pulseaudio)
#:use-module (gnu packages python)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages tls)
#:use-module (gnu packages video)
#:use-module (gnu packages xorg))
(define* (make-palemoon #:key
(with-gtk3? #f)
(branding "official"))
(package
(name "palemoon")
(version "33.4.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git")
(commit (string-append version "_Release"))
(recursive? #t)))
(file-name (git-file-name name version))
(sha256
(base32 "16h25qfvirsan8rr7rk6b4hyvn7w1gb0y9wlsxjpzqac6kl2s98c"))
(patches
(parameterize
((%patch-path
(map (lambda (directory)
(string-append directory "/battering/packages/patches"))
%load-path)))
(search-patches "palemoon-vendor-basename.patch")))))
(build-system mozilla-build-system)
(native-inputs
(list autoconf
libxcrypt
m4
perl
pkg-config
python-2.7
tar
unzip
which
yasm
zip))
(inputs
(list bash-minimal
(if with-gtk3?
gtk+
gtk+-2)
glib
dbus-glib
libdbusmenu
desktop-file-utils
libaom
libxt
openssl
sqlite
alsa-lib
pulseaudio
ffmpeg
mesa
gconf))
(arguments
(let* ((gtk-version (if with-gtk3? "gtk3" "gtk2"))
(branding-dir (format #f "~a/branding/~a" name branding))
(distdir
(format #f "obj-~a/dist"
(string-replace-substring
(or (%current-target-system)
%host-type)
"unknown"
"pc")))
(tarball-dist
(format #f "~a/~a-~a.~a-~a.tar.xz"
distdir
name
version
(string-join
(reverse
(string-split
(or (%current-target-system)
(%current-system)) #\-)) "-")
gtk-version)))
(list #:tests? #f
#:configure-flags #~'(#$(string-append "--enable-application=" name)
"--enable-appcompat-guid"
"--enable-av1"
#$(string-append "--enable-default-toolkit=cairo-" gtk-version)
"--enable-devtools"
"--enable-jemalloc"
"--enable-jxl"
"--enable-more-deterministic"
"--enable-necko-wifi"
"--enable-official-branding" ;; Official branding.
#$(string-append "--with-branding=" branding-dir)
"--enable-optimize=\"-O2 -w\""
"--enable-strip"
"--enable-system-ffi"
"--enable-system-pixman"
"--disable-debug"
"--disable-debug-symbols"
"--disable-debug-js-modules"
"--disable-elf-hack"
"--disable-gamepad"
"--disable-gold"
"--disable-tests"
"--disable-updater"
"--disable-webrtc"
;; "--with-gl-provider=EGL"
"--with-pthreads"
"--with-x"
;; Avoid bundled libraries.
;; UNBUNDLE-ME! "--enable-system-sqlite"
;; UNBUNDLE-ME! "--with-system-bz2"
;; UNBUNDLE-ME! "--with-system-graphite2"
;; UNBUNDLE-ME! "--with-system-harfbuzz"
;; UNBUNDLE-ME! "--with-system-libevent"
;; UNBUNDLE-ME! "--with-system-libvpx"
;; UNBUNDLE-ME! "--with-system-nss" ; pending upgrade of 'nss' to 3.90
;; UNBUNDLE-ME! "--with-system-ogg"
;; UNBUNDLE-ME! "--with-system-theora" ; wants theora-1.2, not yet released
;; UNBUNDLE-ME! "--with-system-vorbis"
;; UNBUNDLE-ME! "--with-system-jpeg" ;must be libjpeg-turbo
;; UNBUNDLE-ME! "--with-system-zlib"
;; UNBUNDLE-ME! "--with-system-icu"
;; UNBUNDLE-ME! "--with-system-png" ;must be libpng-apng
#$(if with-gtk3? ;; NPAPI requires gtk2. It's for Adobe Flash and Silverlight.
"--disable-npapi"
"--enable-npapi")
#$(if with-gtk3? ;; TODO: find a way to link atk_bridge_adaptor_init
"--disable-accessibility"
"--enable-accessibility"))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-prefs
(lambda* (#:key inputs #:allow-other-keys)
(let ((port (open-file #$(format #f "~a/app/profile/~a.js" name name) "a")))
(for-each (lambda (pref)
(let ((key (car pref))
(value (if (boolean? (cadr pref)) (if (cadr pref)
'true
'false)
(cadr pref))))
(format port "~%pref(~s, ~s);~%" key value)
(format #t "fix-prefs: setting value of ~s to ~s~%" key value)))
'(("browser.backspace_action" 0)
("extensions.blocklist.enabled" #f) ;; Feudal blocking
("browser.shell.checkDefaultBrowser" #f)
("security.sandbox.content.read_path_whitelist" (%store-directory))))
(close-port port))))
(add-after 'fix-prefs 'remove-spyware-home-page
(lambda _
(substitute* "palemoon/branding/shared/locales/browserconfig.properties"
;; Switch the page from the properties to something local
(("(https?://)start.palemoon.org(/?)" all https slash) "about:home"))
(substitute* "palemoon/branding/official/palemoon.desktop"
;; New tab should open the user's specified "New Tab" page, not the palemoon start page.
(("^Exec=palemoon -new-tab .*") "Exec=palemoon -new-tab"))
(substitute* '("palemoon/branding/shared/pref/preferences.inc"
"palemoon/branding/unofficial/pref/palemoon-branding.js")
;; Remove the startup.homepage_welcome_url preference
(("^pref\\(\"startup\\.homepage_welcome_url\",\".*\"\\);\n$") ""))))
(add-after 'remove-spyware-home-page 'patch-configure-in
(lambda* (#:key inputs #:allow-other-keys)
(substitute* "./configure.in" ;; Doesn't get patched automatically. Why ? This eludes me.
(("^#!/bin/sh") (format #f "#!~a" (search-input-file inputs "bin/sh"))))))
(add-before 'configure 'setenv
(lambda* (#:key inputs #:allow-other-keys)
(setenv "LDFLAGS" (string-append "-Wl,-rpath=" #$output "/lib/" #$name))
(setenv "SHELL" (search-input-file inputs "/bin/bash"))
(setenv "CONFIG_SHELL" (search-input-file inputs "/bin/bash"))
(setenv "MOZILLA_OFFICIAL" "1") ;; Official branding
(setenv "MOZ_PKG_SPECIAL" #$gtk-version)
(setenv "MOZ_NOSPAM" "1")))
(add-before 'configure 'mozconfig
(lambda* (#:key configure-flags #:allow-other-keys)
(call-with-output-file ".mozconfig"
(lambda (p)
(for-each (lambda (flag)
(format p "ac_add_options ~a~%" flag))
configure-flags)))))
(replace 'configure
(lambda _
(invoke "./mach" "configure")))
(replace 'build
(lambda* (#:key (make-flags '()) (parallel-build? #t)
#:allow-other-keys)
(apply invoke "./mach" "build"
`(,(string-append
"-j" (number->string (if parallel-build?
(parallel-job-count)
1)))
,@make-flags))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "./mach" "test"))))
(replace 'install
(lambda* (#:key inputs outputs #:allow-other-keys)
(invoke "./mach" "package")
(let ((tar (search-input-file inputs "/bin/tar"))
(lib (string-append #$output "/lib"))
(bin (string-append #$output "/bin")))
(mkdir-p lib)
(mkdir-p bin)
(invoke tar "xJpf" #$tarball-dist "-C" lib)
(symlink (format #f "~a/~a/~a" lib #$name #$name)
(format #f "~a/~a" bin #$name)))))
(add-after 'install 'wrap-program
(lambda* (#:key inputs #:allow-other-keys)
(wrap-program (format #f "~a/lib/~a/~a" #$output #$name #$name)
`("GDK_BACKEND" = ("x11"))
`("MOZ_ENABLE_WAYLAND" = ("0")))))
(add-after 'install 'install-branding
(lambda* (#:key outputs #:allow-other-keys)
(install-file #$(format #f "~a/branding/official/~a.desktop" name name)
(string-append #$output "/share/applications/"))
(for-each (lambda (size)
(let ((dir (format #f "~a/share/icons/hicolor/~ax~a/apps" #$output size size)))
(mkdir-p dir)
(copy-file
(format #f "~a/default~a.png" #$branding-dir size)
(in-vicinity dir (format #f "~a.png" #$name)))))
'(16 32 48))
(let* ((dir (format #f "~a/share/icons/hicolor/128x128/apps" #$output)))
(mkdir-p dir)
(copy-file
(format #f "~a/mozicon128.png" #$branding-dir)
(in-vicinity dir (format #f "~a.png" #$name))))))))))
(home-page "https://palemoon.org")
(synopsis "Independent browser derived from Firefox/Mozilla community code")
(description "Pale Moon is an Open Source, Goanna-based web browser.")
(license license:mpl2.0)))
(define-public palemoon (make-palemoon #:with-gtk3? #f))
(define-public palemoon-gtk3
(package
(inherit (make-palemoon #:with-gtk3? #t))
(name "palemoon-gtk3")))
|