about summary refs log tree commit diff
path: root/config/firefox/overlay.nix
blob: 74ce8760c53fb15f66781ec279b601dd3c350565 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
self: super:

{
  firefoxPackages = with super.firefoxPackages;
    super.firefoxPackages // {
      firefox = firefox.overrideAttrs ({ patches ? [], ... }: {
        patches = patches ++ [ release/D6695.diff ];
      });

      firefox-beta = firefox-beta.overrideAttrs ({ patches ? [], ... }: {
        patches = patches ++ [ beta/D6695.diff ];
      });

      firefox-nightly = firefox-nightly.overrideAttrs ({ patches ? [], ... }: {
        patches = patches ++ [ nightly/D6695.diff ];
      });
    };
}