Mozilla Firefox icon

Mozilla Firefox 136.0.1

Web browser

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    firefox # Mozilla Firefox
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    firefox # Mozilla Firefox
  ];
}

Package Definition

{
  "pname": "firefox",
  "version": "136.0.1",
  "src": {
    "url": "https://download-installer.cdn.mozilla.net/pub/firefox/releases/136.0.1/mac/en-US/Firefox%20136.0.1.dmg",
    "sha256": "416f5edf1e9fb938ccaea798adfe177ef7a4072c95a527cb460f3417d1ef5266"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Firefox.app\" && cp -r \"Firefox.app\" \"$out/Applications\"",
    "mkdir -p \"$out/bin\" && ln -s \"$out/firefox.wrapper.sh\" \"$out/bin/firefox\""
  ],
  "meta": {
    "description": "Web browser",
    "homepage": "https://www.mozilla.org/firefox/"
  }
}