about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-15T19·46+0300
committertazjin <mail@tazj.in>2021-09-16T01·18+0000
commitd0f7c85eb68041711d29c9d888ab995b12b0daa0 (patch)
tree5962c6a595ae237f1d7a19829d442c7bb8542270 /third_party
parent6012ac8c1ec4e9eb7bc177c56f08a1c0317bd556 (diff)
chore(3p/overlays): Override EXWM sources with tree from depot r/2871
Change-Id: I6047ab634deb2f019bcdc9a76a2194997fc84b29
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3559
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/overlays/tvl.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix
index f637847355..ebe47a6144 100644
--- a/third_party/overlays/tvl.nix
+++ b/third_party/overlays/tvl.nix
@@ -30,6 +30,11 @@ self: super: {
       # Use the notmuch from nixpkgs instead of from the Emacs
       # overlay, to avoid versions being out of sync.
       notmuch = super.notmuch.emacs;
+
+      # Build EXWM with the depot sources instead.
+      exwm = esuper.exwm.overrideAttrs(_: {
+        src = "${depot.path + "/third_party/exwm"}";
+      });
     })
   );