diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-03-31 08:46:25 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-03-31 08:46:25 +0200 |
| commit | 4142b300aa7df8fb89dd7ea9545330ed2d22dc02 (patch) | |
| tree | bb4eec889deb0a771f2f06ee18e4f523e51e75a3 /overlays/thunderbird.nix | |
| parent | 4ea48d3bfd6fe0ed61446999fe5ba9c0a4e6b355 (diff) | |
| download | nixos-4142b300aa7df8fb89dd7ea9545330ed2d22dc02.tar nixos-4142b300aa7df8fb89dd7ea9545330ed2d22dc02.tar.gz nixos-4142b300aa7df8fb89dd7ea9545330ed2d22dc02.tar.bz2 nixos-4142b300aa7df8fb89dd7ea9545330ed2d22dc02.tar.xz nixos-4142b300aa7df8fb89dd7ea9545330ed2d22dc02.zip | |
...
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 | } |
