summaryrefslogtreecommitdiff
path: root/overlays/thunderbird.nix
blob: 1a32a0d517941d507e8349c537f48f5a1f4a774c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ final, prev, ... }: {
  thunderbird-unwrapped = prev.thunderbird-unwrapped.overrideAttrs (oldAttrs: {
    patches = (oldAttrs.patches or []) ++ [
      (prev.fetchpatch {
        url = "https://hg.mozilla.org/comm-central/raw-rev/a82bd8fc0bc0";
        hash = "sha256-7t8IqxwcZJqXmOevpGof1mcrFKZvXtCcY2EOIsP47EY=";
        stripLen = 1;
        extraPrefix = "comm/";
      })
    ];
  });
}