about summary refs log tree commit diff
path: root/overlays/patches/firefox
Commit message (Collapse)AuthorAge
* Merge branch 'nixos-unstable' of https://github.com/NixOS/nixpkgsAlyssa Ross2023-06-16
| | | | | | | | | | | | | | | | | | | | | | Conflicts: nixpkgs/nixos/modules/config/console.nix nixpkgs/nixos/modules/services/mail/mailman.nix nixpkgs/nixos/modules/services/mail/public-inbox.nix nixpkgs/nixos/modules/services/mail/rss2email.nix nixpkgs/nixos/modules/services/networking/ssh/sshd.nix nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix nixpkgs/pkgs/applications/networking/irc/weechat/default.nix nixpkgs/pkgs/applications/window-managers/sway/default.nix nixpkgs/pkgs/build-support/go/module.nix nixpkgs/pkgs/build-support/rust/build-rust-package/default.nix nixpkgs/pkgs/development/interpreters/python/default.nix nixpkgs/pkgs/development/node-packages/overrides.nix nixpkgs/pkgs/development/tools/b4/default.nix nixpkgs/pkgs/servers/dict/dictd-db.nix nixpkgs/pkgs/servers/mail/public-inbox/default.nix nixpkgs/pkgs/tools/security/pinentry/default.nix nixpkgs/pkgs/tools/text/unoconv/default.nix nixpkgs/pkgs/top-level/all-packages.nix
* patches/firefox: fix diff nameAlyssa Ross2023-02-08
|
* firefox: 92.0.1 -> 93.0Martin Weinelt2021-10-17
| | | | (cherry picked from commit 7dfcaf5e73feebe12606dbc4c08128af75797fa4)
* Merge commit '1a57d96edd156958b12782e8c8b6a374142a7248'Alyssa Ross2021-01-15
|
* firefox-beta: 66.0b5 -> 83.0b10Alyssa Ross2021-01-06
|
* patches/firefox: remove nightlyAlyssa Ross2021-01-06
| | | | | There's no super nightly package to override, so this declared a package that didn't evaluate.
* patches/firefox: build with latest LLVMAlyssa Ross2020-11-27
| | | | | | I wouldn't use llvmPackages_latest in Nixpkgs, but it's probably useful to try out the latest version personally, and otherwise I'd probably forget and leave it stuck on an old version.
* patches/firefox: apply XDG patch to ESR tooAlyssa Ross2020-09-29
|
* patches/firefox: update XDG patch for Firefox 80Alyssa Ross2020-09-29
|
* patches/firefox: build ESR with clang tooAlyssa Ross2020-09-29
| | | | | Like with non-ESR releases, Firefox ESR now won't build on AMD EPYC 7401P CPUs. See <https://github.com/NixOS/nixpkgs/issues/84283>.
* overlays: don't apply to all nixpkgs treesAlyssa Ross2020-07-13
Since the nixlib root is the NIX_PATH root, overlays were in the NIX_PATH as "nixpkgs-overlays". Nixpkgs imports that by default to look for overlays. This meant that an arbitrary Nixpkgs tree would end up trying to use the Nixlib overlays, which wouldn't always work. It would also mean that derivations built from those trees wouldn't match the ones other people would try to build, which is undesirable for working on nixpkgs. I think this is unfortunate behaviour for anybody working on nixpkgs, and nixpkgs probably shouldn't load overlays from impurely at all by default, but it is what it is. Since I can't really change what upstream nixpkgs does here, the best I can do is change the nixpkgs in nixlib. It will now load overlays from a sibling "overlays" directory. Renaming the "nixpkgs-overlays" directory at the nixlib root to "overlays" means that it will be loaded by default _only_ by the nixpkgs it is colocated with. It also means that it is still accessible in the NIX_PATH as <overlays>, which is fine and convenient as long as nothing starts looking at that by default.