849ee4d900
GitOrigin-RevId: 9e377a6ce42dccd9b624ae4ce8f978dc892ba0e2
20 lines
450 B
Nix
20 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;
|
|
};
|
|
})
|