mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
12 lines
259 B
Nix
12 lines
259 B
Nix
{ 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 { };
|
|
}
|
|
)
|