mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
148aa398b7
mntmn/Firedecor is the fork used for Debian packaging.
14 lines
355 B
Nix
14 lines
355 B
Nix
{ 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 { };
|
|
}
|
|
)
|