mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01: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.
9 lines
164 B
Nix
9 lines
164 B
Nix
{ callPackage }:
|
|
|
|
{
|
|
inherit callPackage;
|
|
|
|
roundcubePlugin = callPackage ./roundcube-plugin.nix { };
|
|
|
|
persistent_login = callPackage ./persistent_login { };
|
|
}
|