nixpkgs/pkgs/applications/networking/browsers/palemoon/default.nix

248 lines
6.0 KiB
Nix
Raw Normal View History

2021-11-19 01:25:34 +00:00
{ lib
, stdenv
, alsa-lib
2021-04-29 10:51:10 +00:00
, autoconf213
, cairo
, dbus
, dbus-glib
2021-11-19 01:25:34 +00:00
, desktop-file-utils
, fetchzip
2021-04-29 10:51:10 +00:00
, ffmpeg
, fontconfig
, freetype
, gnome2
, gnum4
, libGL
, libGLU
2021-11-19 01:25:34 +00:00
, libevent
2021-04-29 10:51:10 +00:00
, libnotify
, libpulseaudio
, libstartup_notification
2021-11-19 01:25:34 +00:00
, pango
2021-04-29 10:51:10 +00:00
, perl
, pkg-config
, python2
, unzip
, which
, wrapGAppsHook
2021-11-19 01:25:34 +00:00
, writeScript
2021-04-29 10:51:10 +00:00
, xorg
, yasm
, zip
, zlib
2021-11-19 01:25:34 +00:00
, withGTK3 ? true, gtk3, gtk2
2017-01-07 01:23:20 +00:00
}:
2021-06-10 07:13:16 +00:00
# Only specific GCC versions are supported with branding
# https://developer.palemoon.org/build/linux/
assert stdenv.cc.isGNU;
assert with lib.strings; (
versionAtLeast stdenv.cc.version "4.9"
&& !hasPrefix "6" stdenv.cc.version
&& versionOlder stdenv.cc.version "11"
);
2021-04-29 10:51:10 +00:00
stdenv.mkDerivation rec {
pname = "palemoon";
2021-11-19 01:25:34 +00:00
version = "29.4.2.1";
2017-01-07 01:23:20 +00:00
2021-09-17 16:23:08 +00:00
src = fetchzip {
2021-11-19 01:25:34 +00:00
name = "${pname}-${version}";
url = "http://archive.palemoon.org/source/${pname}-${version}.source.tar.xz";
sha256 = "sha256-iTn1jbbsw7u+rVe/1J9yJbS0wi5Rlkcy4rO8nWcXu2I=";
2017-01-07 01:23:20 +00:00
};
nativeBuildInputs = [
2021-04-29 10:51:10 +00:00
autoconf213
desktop-file-utils
gnum4
perl
pkg-config
python2
unzip
which
wrapGAppsHook
yasm
zip
];
2017-01-07 01:23:20 +00:00
buildInputs = [
alsa-lib
2021-04-29 10:51:10 +00:00
cairo
dbus
dbus-glib
ffmpeg
fontconfig
freetype
gnome2.GConf
gtk2
libGL
libGLU
2021-11-19 01:25:34 +00:00
libevent
2021-04-29 10:51:10 +00:00
libnotify
libpulseaudio
libstartup_notification
2021-11-19 01:25:34 +00:00
pango
2021-04-29 10:51:10 +00:00
zlib
]
++ (with xorg; [
2021-04-29 10:51:10 +00:00
libX11
libXext
libXft
libXi
libXrender
libXScrnSaver
libXt
pixman
xorgproto
])
2021-11-19 01:25:34 +00:00
++ lib.optionals withGTK3 [
gtk3
];
2017-01-07 01:23:20 +00:00
enableParallelBuilding = true;
2021-11-19 01:25:34 +00:00
postPatch = ''
patchShebangs ./mach
'';
2017-01-07 01:23:20 +00:00
configurePhase = ''
2021-04-29 10:51:10 +00:00
runHook preConfigure
2020-12-27 18:07:57 +00:00
export MOZCONFIG=$PWD/mozconfig
export MOZ_NOSPAM=1
# Keep this similar to the official .mozconfig file,
# only minor changes for portability are permitted with branding.
# https://developer.palemoon.org/build/linux/
echo > $MOZCONFIG '
# Clear this if not a 64bit build
_BUILD_64=${lib.optionalString stdenv.hostPlatform.is64bit "1"}
2021-11-19 01:25:34 +00:00
# Set GTK Version
_GTK_VERSION=${if withGTK3 then "3" else "2"}
# Standard build options for Pale Moon
ac_add_options --enable-application=palemoon
ac_add_options --enable-optimize="-O2 -w"
ac_add_options --enable-default-toolkit=cairo-gtk$_GTK_VERSION
2017-01-07 01:23:20 +00:00
ac_add_options --enable-jemalloc
ac_add_options --enable-strip
ac_add_options --enable-devtools
ac_add_options --enable-av1
ac_add_options --disable-eme
ac_add_options --disable-webrtc
ac_add_options --disable-gamepad
ac_add_options --disable-tests
ac_add_options --disable-debug
ac_add_options --disable-necko-wifi
ac_add_options --disable-updater
2020-09-13 20:51:02 +00:00
ac_add_options --with-pthreads
# Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding.
ac_add_options --enable-official-branding
export MOZILLA_OFFICIAL=1
ac_add_options --x-libraries=${lib.makeLibraryPath [ xorg.libX11 ]}
#
# NixOS-specific adjustments
#
2017-01-07 01:23:20 +00:00
ac_add_options --prefix=$out
2020-08-06 18:24:26 +00:00
mk_add_options MOZ_MAKE_FLAGS="-j${if enableParallelBuilding then "$NIX_BUILD_CORES" else "1"}"
mk_add_options AUTOCONF=${autoconf213}/bin/autoconf
'
2021-04-29 10:51:10 +00:00
runHook postConfigure
2017-01-07 01:23:20 +00:00
'';
2021-04-29 10:51:10 +00:00
buildPhase = ''
runHook preBuild
./mach build
runHook postBuild
'';
2017-01-07 01:23:20 +00:00
installPhase = ''
2021-04-29 10:51:10 +00:00
runHook preInstall
2020-12-27 18:07:57 +00:00
./mach install
# Fix missing icon due to wrong WMClass
2021-06-10 07:13:16 +00:00
# https://forum.palemoon.org/viewtopic.php?f=3&t=26746&p=214221#p214221
substituteInPlace ./palemoon/branding/official/palemoon.desktop \
--replace 'StartupWMClass="pale moon"' 'StartupWMClass=Pale moon'
2020-08-06 18:24:26 +00:00
desktop-file-install --dir=$out/share/applications \
2020-12-27 18:07:57 +00:00
./palemoon/branding/official/palemoon.desktop
2018-01-13 11:23:55 +00:00
2021-04-29 10:51:10 +00:00
# Install official branding icons
2020-08-06 18:24:26 +00:00
for iconname in default{16,22,24,32,48,256} mozicon128; do
n=''${iconname//[^0-9]/}
2018-01-13 11:23:55 +00:00
size=$n"x"$n
2020-12-27 18:07:57 +00:00
install -Dm644 ./palemoon/branding/official/$iconname.png $out/share/icons/hicolor/$size/apps/palemoon.png
2018-01-13 11:23:55 +00:00
done
2021-04-29 10:51:10 +00:00
# Remove unneeded SDK data from installation
2021-06-10 07:13:16 +00:00
# https://forum.palemoon.org/viewtopic.php?f=37&t=26796&p=214676#p214729
2021-04-29 10:51:10 +00:00
rm -rf $out/{include,share/idl,lib/palemoon-devel-${version}}
runHook postInstall
2020-10-04 08:19:14 +00:00
'';
dontWrapGApps = true;
2021-11-19 01:25:34 +00:00
preFixup =
let
libPath = lib.makeLibraryPath [
ffmpeg
libpulseaudio
];
in
''
gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : "${libPath}"
)
2020-10-04 08:19:14 +00:00
wrapGApp $out/lib/palemoon-${version}/palemoon
2017-01-07 01:23:20 +00:00
'';
meta = with lib; {
2021-11-19 01:25:34 +00:00
homepage = "https://www.palemoon.org/";
description = "An Open Source, Goanna-based web browser focusing on efficiency and customization";
longDescription = ''
Pale Moon is an Open Source, Goanna-based web browser focusing on
efficiency and customization.
Pale Moon offers you a browsing experience in a browser completely built
from its own, independently developed source that has been forked off from
Firefox/Mozilla code a number of years ago, with carefully selected
features and optimizations to improve the browser's stability and user
experience, while offering full customization and a growing collection of
extensions and themes to make the browser truly your own.
'';
2021-06-10 07:13:16 +00:00
changelog = "https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases/tag/${version}_Release";
2021-04-29 10:51:10 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ AndersonTorres OPNA2608 ];
2021-04-29 10:51:10 +00:00
platforms = [ "i686-linux" "x86_64-linux" ];
2017-01-07 01:23:20 +00:00
};
2021-11-19 01:25:34 +00:00
passthru.updateScript = writeScript "update-${pname}" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p common-updater-scripts curl libxml2
set -eu -o pipefail
# Only release note announcement == finalized release
version="$(
curl -s 'http://www.palemoon.org/releasenotes.shtml' |
xmllint --html --xpath 'html/body/table/tbody/tr/td/h3/text()' - 2>/dev/null | head -n1 |
sed 's/v\(\S*\).*/\1/'
)"
update-source-version ${pname} "$version"
'';
2017-01-07 01:23:20 +00:00
}