mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 22:24:40 +00:00
![Patrick Hilhorst](/assets/img/avatar_default.png)
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;
|
|
};
|
|
})
|