nixpkgs/pkgs/applications/networking/browsers/firefox/packages.nix

59 lines
2.3 KiB
Nix
Raw Normal View History

2020-12-31 02:47:54 +00:00
{ stdenv, lib, callPackage, fetchurl, fetchpatch, nixosTests }:
let
common = opts: callPackage (import ./common.nix opts) {};
in
rec {
firefox = common rec {
pname = "firefox";
2021-07-22 12:12:52 +00:00
ffversion = "90.0.2";
2018-05-11 00:09:36 +00:00
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
2021-07-22 12:12:52 +00:00
sha512 = "4fda0b1e666fb0b1d846708fad2b48a5b53d48e7fc2a5da1f234b5b839c55265b41f6509e6b506d5e8a7455f816dfa5ab538589bc9e83b7e3846f0f72210513e";
};
meta = {
description = "A web browser built from Firefox source tree";
homepage = "http://www.mozilla.com/en-US/firefox/";
maintainers = with lib.maintainers; [ eelco lovesegfault hexa ];
2018-07-10 22:10:04 +00:00
platforms = lib.platforms.unix;
badPlatforms = lib.platforms.darwin;
broken = stdenv.buildPlatform.is32bit; # since Firefox 60, build on 32-bit platforms fails with "out of memory".
# not in `badPlatforms` because cross-compilation on 64-bit machine might work.
license = lib.licenses.mpl20;
};
2020-12-31 02:47:54 +00:00
tests = [ nixosTests.firefox ];
updateScript = callPackage ./update.nix {
attrPath = "firefox-unwrapped";
versionKey = "ffversion";
};
};
2020-07-27 12:14:14 +00:00
firefox-esr-78 = common rec {
pname = "firefox-esr";
2021-07-12 12:13:20 +00:00
ffversion = "78.12.0esr";
2020-07-27 12:14:14 +00:00
src = fetchurl {
url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz";
2021-07-12 12:13:20 +00:00
sha512 = "646eb803e0d0e541773e3111708c7eaa85e784e4bae6e4a77dcecdc617ee29e2e349c9ef16ae7e663311734dd7491aebd904359124dda62672dbc18bfb608f0a";
2020-07-27 12:14:14 +00:00
};
meta = {
description = "A web browser built from Firefox Extended Support Release source tree";
homepage = "http://www.mozilla.com/en-US/firefox/";
maintainers = with lib.maintainers; [ eelco hexa ];
2020-07-27 12:14:14 +00:00
platforms = lib.platforms.unix;
badPlatforms = lib.platforms.darwin;
broken = stdenv.buildPlatform.is32bit; # since Firefox 60, build on 32-bit platforms fails with "out of memory".
# not in `badPlatforms` because cross-compilation on 64-bit machine might work.
license = lib.licenses.mpl20;
};
2020-12-31 02:47:54 +00:00
tests = [ nixosTests.firefox-esr ];
2020-07-27 12:14:14 +00:00
updateScript = callPackage ./update.nix {
attrPath = "firefox-esr-78-unwrapped";
versionSuffix = "esr";
2020-07-27 12:14:14 +00:00
versionKey = "ffversion";
};
};
}