about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/wayfire/plugins.nix
blob: 111a8c87dd787c05c0e159a5e9f1048da14bd469 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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 { };
  }
)