mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
2820e1df5c
This meta-package is supposed to contain third-party roundcube plugins such as `persistent_login` that will be linked into the roundcube derivation.
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
|