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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

223 lines
4.9 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
2022-05-10 20:36:04 +00:00
, fetchFromGitea
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
, testers
, palemoon
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; (
2022-05-10 20:36:04 +00:00
versionAtLeast stdenv.cc.version "7.1"
&& versionOlder stdenv.cc.version "12"
2021-06-10 07:13:16 +00:00
);
2021-04-29 10:51:10 +00:00
stdenv.mkDerivation rec {
pname = "palemoon";
2022-12-03 18:59:55 +00:00
version = "31.4.1.1";
2022-05-10 20:36:04 +00:00
src = fetchFromGitea {
domain = "repo.palemoon.org";
owner = "MoonchildProductions";
repo = "Pale-Moon";
2022-07-07 20:47:19 +00:00
rev = "${version}_Release";
2022-05-10 20:36:04 +00:00
fetchSubmodules = true;
2022-12-03 18:59:55 +00:00
sha256 = "sha256-lr8xT9tRxVjg1DxUZuCyWuCFBPPdmkvsnmAsoX8o/6Y=";
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
# Too many cores can lead to build flakiness
# https://forum.palemoon.org/viewtopic.php?f=5&t=28480
export jobs=$(($NIX_BUILD_CORES<=16 ? $NIX_BUILD_CORES : 16))
if [ -z "$enableParallelBuilding" ]; then
jobs=1
fi
2020-12-27 18:07:57 +00:00
export MOZCONFIG=$PWD/mozconfig
export MOZ_NOSPAM=1
export build64=${lib.optionalString stdenv.hostPlatform.is64bit "1"}
export gtkversion=${if withGTK3 then "3" else "2"}
export xlibs=${lib.makeLibraryPath [ xorg.libX11 ]}
export prefix=$out
export mozmakeflags="-j$jobs"
export autoconf=${autoconf213}/bin/autoconf
substituteAll ${./mozconfig} $MOZCONFIG
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
2022-05-10 20:36:04 +00:00
# Install official branding stuff
2020-08-06 18:24:26 +00:00
desktop-file-install --dir=$out/share/applications \
./palemoon/branding/official/palemoon.desktop
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
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
# https://forum.palemoon.org/viewtopic.php?f=37&t=26796&p=214676#p214729
2022-05-10 20:36:04 +00:00
rm -r $out/{include,share/idl,lib/palemoon-devel-${version}}
2021-04-29 10:51:10 +00:00
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
2021-11-19 01:25:34 +00:00
set -eu -o pipefail
2021-11-19 01:25:34 +00:00
# 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"
'';
tests.version = testers.testVersion {
package = palemoon;
};
};
2017-01-07 01:23:20 +00:00
}