49299adf4e
Uses the old wlroots in places where the new one isn't yet compatible. Co-authored-by: Alyssa Ross <hi@alyssa.is> Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
21 lines
450 B
Nix
21 lines
450 B
Nix
{ lib, newScope, wayfirePlugins }:
|
|
|
|
lib.makeExtensible (self: with self; {
|
|
inherit wayfirePlugins;
|
|
|
|
callPackage = newScope self;
|
|
|
|
wayfire = callPackage ./. { };
|
|
|
|
wcm = callPackage ./wcm.nix {
|
|
inherit (wayfirePlugins) wf-shell;
|
|
};
|
|
|
|
wrapWayfireApplication = callPackage ./wrapper.nix { };
|
|
|
|
withPlugins = selector: self // {
|
|
wayfire = wrapWayfireApplication wayfire selector;
|
|
wcm = wrapWayfireApplication wcm selector;
|
|
};
|
|
})
|