about summary refs log tree commit diff
path: root/third_party/overlays/tvl.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-11-25T10·52+0300
committertazjin <mail@tazj.in>2021-11-25T13·57+0000
commitbf4d8ab603a754c326d946e1a51c6ff641142e56 (patch)
tree7578b86faab9186f9a65e5310e18ced4f2f4bc9b /third_party/overlays/tvl.nix
parent397c3e70b3130e3ee76047725a48bf1a818354e0 (diff)
fix(3p/overlays): Avoid cache-busting EXWM on every commit r/3096
This is a bit silly, I assumed hte previous one would concatenate the
path before importing it into the store - but it doesn't.

Change-Id: Iebb4c9cb432751448deeac07d6b7ad8225711d30
Diffstat (limited to 'third_party/overlays/tvl.nix')
-rw-r--r--third_party/overlays/tvl.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix
index 0bf301e8e5..3e9607984e 100644
--- a/third_party/overlays/tvl.nix
+++ b/third_party/overlays/tvl.nix
@@ -39,7 +39,7 @@ self: super: {
 
       # Build EXWM with the depot sources instead.
       exwm = esuper.exwm.overrideAttrs(_: {
-        src = "${depot.path + "/third_party/exwm"}";
+        src = depot.path.origSrc + "/third_party/exwm";
       });
     })
   );