diff options
Diffstat (limited to 'overlays/thunderbird.nix')
| -rw-r--r-- | overlays/thunderbird.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/overlays/thunderbird.nix b/overlays/thunderbird.nix index 1a32a0d5..48ae2ccb 100644 --- a/overlays/thunderbird.nix +++ b/overlays/thunderbird.nix | |||
| @@ -1,12 +1,11 @@ | |||
| 1 | { final, prev, ... }: { | 1 | { final, prev, ... }: { |
| 2 | thunderbird-unwrapped = prev.thunderbird-unwrapped.overrideAttrs (oldAttrs: { | 2 | thunderbird-unwrapped = prev.thunderbird-unwrapped.overrideAttrs (oldAttrs: { |
| 3 | patches = (oldAttrs.patches or []) ++ [ | 3 | patches = (oldAttrs.patches or []) |
| 4 | (prev.fetchpatch { | 4 | ++ prev.lib.optional (prev.lib.versionAtLeast oldAttrs.version "136") (prev.fetchpatch { |
| 5 | url = "https://hg.mozilla.org/comm-central/raw-rev/a82bd8fc0bc0"; | 5 | url = "https://hg.mozilla.org/comm-central/raw-rev/a82bd8fc0bc0"; |
| 6 | hash = "sha256-7t8IqxwcZJqXmOevpGof1mcrFKZvXtCcY2EOIsP47EY="; | 6 | hash = "sha256-7t8IqxwcZJqXmOevpGof1mcrFKZvXtCcY2EOIsP47EY="; |
| 7 | stripLen = 1; | 7 | stripLen = 1; |
| 8 | extraPrefix = "comm/"; | 8 | extraPrefix = "comm/"; |
| 9 | }) | 9 | }); |
| 10 | ]; | ||
| 11 | }); | 10 | }); |
| 12 | } | 11 | } |
