diff options
-rw-r--r-- | overlays/thunderbird.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/overlays/thunderbird.nix b/overlays/thunderbird.nix new file mode 100644 index 00000000..1a32a0d5 --- /dev/null +++ b/overlays/thunderbird.nix | |||
@@ -0,0 +1,12 @@ | |||
1 | { final, prev, ... }: { | ||
2 | thunderbird-unwrapped = prev.thunderbird-unwrapped.overrideAttrs (oldAttrs: { | ||
3 | patches = (oldAttrs.patches or []) ++ [ | ||
4 | (prev.fetchpatch { | ||
5 | url = "https://hg.mozilla.org/comm-central/raw-rev/a82bd8fc0bc0"; | ||
6 | hash = "sha256-7t8IqxwcZJqXmOevpGof1mcrFKZvXtCcY2EOIsP47EY="; | ||
7 | stripLen = 1; | ||
8 | extraPrefix = "comm/"; | ||
9 | }) | ||
10 | ]; | ||
11 | }); | ||
12 | } | ||