mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
12 lines
145 B
Nix
12 lines
145 B
Nix
|
{ newScope, pkgs }:
|
||
|
|
||
|
let
|
||
|
|
||
|
callPackage = newScope (pkgs // plugins);
|
||
|
|
||
|
plugins = import ./plugins.nix { inherit callPackage; };
|
||
|
|
||
|
in
|
||
|
|
||
|
plugins
|