about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/wayfire/plugins.nix
blob: 86f522cdd68d05ba9557451d6e1732e228b40d7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, pkgs }:

lib.makeScope pkgs.newScope (self:
  let
    inherit (self) callPackage;
  in {
    wayfire-plugins-extra = callPackage ./wayfire-plugins-extra.nix { };
    wcm = callPackage ./wcm.nix { };
    wf-shell = callPackage ./wf-shell.nix { };
    windecor = callPackage ./windecor.nix { };
  }
)