diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-15T19·46+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-09-16T01·18+0000 |
commit | d0f7c85eb68041711d29c9d888ab995b12b0daa0 (patch) | |
tree | 5962c6a595ae237f1d7a19829d442c7bb8542270 /third_party/overlays | |
parent | 6012ac8c1ec4e9eb7bc177c56f08a1c0317bd556 (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/overlays')
-rw-r--r-- | third_party/overlays/tvl.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index f6378473555d..ebe47a61449a 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"}"; + }); }) ); |