2820e1df5c
This meta-package is supposed to contain third-party roundcube plugins such as `persistent_login` that will be linked into the roundcube derivation.
10 lines
164 B
Nix
10 lines
164 B
Nix
{ callPackage }:
|
|
|
|
{
|
|
inherit callPackage;
|
|
|
|
roundcubePlugin = callPackage ./roundcube-plugin.nix { };
|
|
|
|
persistent_login = callPackage ./persistent_login { };
|
|
}
|