about summary refs log tree commit diff
path: root/overlays
diff options
context:
space:
mode:
Diffstat (limited to 'overlays')
-rw-r--r--overlays/patches/default.nix2
-rw-r--r--overlays/patches/thunderbird/default.nix5
2 files changed, 7 insertions, 0 deletions
diff --git a/overlays/patches/default.nix b/overlays/patches/default.nix
index eb1626c48499..88aa2ccf251c 100644
--- a/overlays/patches/default.nix
+++ b/overlays/patches/default.nix
@@ -17,6 +17,8 @@ self: super: {
 
   python3 = self.callPackage ./python { python = super.python3; };
 
+  thunderbird = self.callPackage ./thunderbird { inherit (super) thunderbird; };
+
   tmux = self.callPackage ./tmux { inherit (super) tmux; };
 
   waylandPkgs = self.extend (import ./nixpkgs-wayland);
diff --git a/overlays/patches/thunderbird/default.nix b/overlays/patches/thunderbird/default.nix
new file mode 100644
index 000000000000..79b489ee98b8
--- /dev/null
+++ b/overlays/patches/thunderbird/default.nix
@@ -0,0 +1,5 @@
+{ thunderbird, clangStdenv, ... } @ args:
+
+thunderbird.override ({
+  stdenv = clangStdenv;
+} // (builtins.removeAttrs args [ "clangStdenv" "thunderbird" ]))