fix(3p/overlays): Avoid cache-busting EXWM on every commit

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
This commit is contained in:
Vincent Ambo 2021-11-25 13:52:56 +03:00 committed by tazjin
parent 397c3e70b3
commit bf4d8ab603

View file

@ -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";
});
})
);