nixpkgs/pkgs/applications/networking/browsers/firefox-bin/default.nix

255 lines
6.5 KiB
Nix
Raw Normal View History

2016-05-04 00:29:45 +00:00
{ stdenv, fetchurl, config, makeWrapper
, alsaLib
, atk
, cairo
, curl
, cups
, dbus_glib
, dbus_libs
, fontconfig
, freetype
, gconf
, gdk_pixbuf
, glib
, glibc
, gst_plugins_base
, gstreamer
2016-05-04 00:29:45 +00:00
, gtk2
, gtk3
, libX11
, libXScrnSaver
, libxcb
2014-10-12 13:57:43 +00:00
, libXcomposite
, libXdamage
, libXext
2014-10-12 13:57:43 +00:00
, libXfixes
, libXinerama
, libXrender
, libXt
, libcanberra_gtk2
, libgnome
, libgnomeui
2016-05-04 00:29:45 +00:00
, defaultIconTheme
, mesa
, nspr
, nss
, pango
, libheimdal
, libpulseaudio
, systemd
, generated ? import ./sources.nix
2016-12-01 17:58:16 +00:00
, writeScript
, xidel
, coreutils
, gnused
, gnugrep
}:
2014-08-24 16:52:34 +00:00
assert stdenv.isLinux;
2014-10-12 13:57:43 +00:00
let
inherit (generated) version sources;
arch = if stdenv.system == "i686-linux"
then "linux-i686"
else "linux-x86_64";
isPrefixOf = prefix: string:
builtins.substring 0 (builtins.stringLength prefix) string == prefix;
sourceMatches = locale: source:
(isPrefixOf source.locale locale) && source.arch == arch;
systemLocale = config.i18n.defaultLocale or "en-US";
defaultSource = stdenv.lib.findFirst (sourceMatches "en-US") {} sources;
source = stdenv.lib.findFirst (sourceMatches systemLocale) defaultSource sources;
2016-12-01 17:58:16 +00:00
name = "firefox-bin-unwrapped-${version}";
in
stdenv.mkDerivation {
2016-12-01 17:58:16 +00:00
inherit name;
src = fetchurl { inherit (source) url sha512; };
phases = "unpackPhase installPhase";
libPath = stdenv.lib.makeLibraryPath
[ stdenv.cc.cc
alsaLib
atk
cairo
curl
cups
dbus_glib
dbus_libs
fontconfig
freetype
gconf
gdk_pixbuf
glib
glibc
gst_plugins_base
gstreamer
2016-05-04 00:29:45 +00:00
gtk2
gtk3
libX11
libXScrnSaver
2014-10-12 13:57:43 +00:00
libXcomposite
libxcb
2014-10-12 13:57:43 +00:00
libXdamage
libXext
2014-10-12 13:57:43 +00:00
libXfixes
libXinerama
libXrender
libXt
libcanberra_gtk2
libgnome
libgnomeui
mesa
nspr
nss
pango
libheimdal
2016-08-03 17:39:46 +00:00
libpulseaudio
libpulseaudio.dev
systemd
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc
];
2016-05-04 00:29:45 +00:00
buildInputs = [ makeWrapper gtk3 defaultIconTheme ];
# "strip" after "patchelf" may break binaries.
# See: https://github.com/NixOS/patchelf/issues/10
dontStrip = 1;
installPhase =
''
mkdir -p "$prefix/usr/lib/firefox-bin-${version}"
cp -r * "$prefix/usr/lib/firefox-bin-${version}"
mkdir -p "$out/bin"
ln -s "$prefix/usr/lib/firefox-bin-${version}/firefox" "$out/bin/"
for executable in \
firefox firefox-bin plugin-container \
updater crashreporter webapprt-stub
do
if [ -e "$out/usr/lib/firefox-bin-${version}/$executable" ]; then
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
"$out/usr/lib/firefox-bin-${version}/$executable"
fi
done
find . -executable -type f -exec \
patchelf --set-rpath "$libPath" \
"$out/usr/lib/firefox-bin-${version}/{}" \;
2016-05-08 08:06:08 +00:00
# wrapFirefox expects "$out/lib" instead of "$out/usr/lib"
ln -s "$out/usr/lib" "$out/lib"
# Create a desktop item.
mkdir -p $out/share/applications
cat > $out/share/applications/firefox.desktop <<EOF
[Desktop Entry]
Type=Application
Exec=$out/bin/firefox
2015-06-04 02:33:59 +00:00
Icon=$out/usr/lib/firefox-bin-${version}/browser/icons/mozicon128.png
Name=Firefox
GenericName=Web Browser
Categories=Application;Network;
EOF
2016-05-04 00:29:45 +00:00
wrapProgram "$out/bin/firefox" \
--argv0 "$out/bin/.firefox-wrapped" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:" \
--suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
'';
passthru.ffmpegSupport = true;
2016-12-01 17:58:16 +00:00
passthru.updateScript =
let
version = (builtins.parseDrvName name).version;
isBeta = builtins.stringLength version + 1 == builtins.stringLength (builtins.replaceStrings ["b"] ["bb"] version);
in
writeScript "update-firefox-bin" ''
PATH=${coreutils}/bin:${gnused}/bin:${gnugrep}/bin:${xidel}/bin:${curl}/bin
pushd pkgs/applications/networking/browsers/firefox-bin
tmpfile=`mktemp`
url=http://archive.mozilla.org/pub/firefox/releases/
# retriving latest released version
# - extracts all links from the $url
# - removes . and ..
# - this line remove everything not starting with a number
# - this line sorts everything with semver in mind
# - we remove lines that are mentioning funnelcake
# - this line removes beta version if we are looking for final release
# versions or removes release versions if we are looking for beta
# versions
# - this line pick up latest release
2016-12-01 17:58:16 +00:00
version=`xidel -q $url --extract "//a" | \
sed s"/.$//" | \
grep "^[0-9]" | \
sort --version-sort | \
grep -v "funnelcake" | \
grep -e "${if isBeta then "b" else ""}\([[:digit:]]\|[[:digit:]][[:digit:]]\)$" | ${if isBeta then "" else "grep -v \"b\" |"} \
tail -1`
# this is a list of sha512 and tarballs for both arches
2016-12-01 17:58:16 +00:00
shasums=`curl --silent $url$version/SHA512SUMS`
cat > $tmpfile <<EOF
{
version = "$version";
sources = [
EOF
2016-12-01 17:58:16 +00:00
for arch in linux-x86_64 linux-i686; do
# retriving a list of all tarballs for each arch
# - only select tarballs for current arch
# - only select tarballs for current version
# - rename space with colon so that for loop doesnt
# - inteprets sha and path as 2 lines
for line in `echo "$shasums" | \
grep $arch | \
grep "firefox-$version.tar.bz2$" | \
tr " " ":"`; do
# create an entry for every locale
cat >> $tmpfile <<EOF
2016-12-13 23:53:49 +00:00
{ url = "$url$version/`echo $line | cut -d":" -f3`";
locale = "`echo $line | cut -d":" -f3 | sed "s/$arch\///" | sed "s/\/.*//"`";
arch = "$arch";
sha512 = "`echo $line | cut -d":" -f1`";
}
EOF
2016-12-01 17:58:16 +00:00
done
done
cat >> $tmpfile <<EOF
];
}
EOF
2016-12-01 17:58:16 +00:00
2016-12-12 14:17:06 +00:00
mv $tmpfile ${if isBeta then "beta_" else ""}sources.nix
2016-12-01 17:58:16 +00:00
popd
'';
meta = with stdenv.lib; {
2014-11-25 15:28:55 +00:00
description = "Mozilla Firefox, free web browser (binary package)";
homepage = http://www.mozilla.org/firefox/;
license = {
2014-11-25 15:28:55 +00:00
free = false;
url = http://www.mozilla.org/en-US/foundation/trademarks/policy/;
};
platforms = platforms.linux;
2016-05-15 21:22:50 +00:00
maintainers = with maintainers; [ garbas ];
};
}