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

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