Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 18 lines 533 B view raw
1{ lib, pkgs }: 2 3lib.makeScope pkgs.newScope ( 4 self: 5 let 6 inherit (self) callPackage; 7 in 8 { 9 firedecor = callPackage ./firedecor.nix { }; 10 focus-request = callPackage ./focus-request.nix { }; 11 wayfire-plugins-extra = callPackage ./wayfire-plugins-extra.nix { }; 12 wayfire-shadows = callPackage ./wayfire-shadows.nix { }; 13 wcm = callPackage ./wcm.nix { }; 14 wf-shell = callPackage ./wf-shell.nix { }; 15 windecor = callPackage ./windecor.nix { }; 16 wwp-switcher = callPackage ./wwp-switcher.nix { }; 17 } 18)