roundcubePlugins: init

This meta-package is supposed to contain third-party roundcube plugins
such as `persistent_login` that will be linked into the roundcube
derivation.
This commit is contained in:
Maximilian Bosch
2019-02-08 13:35:09 +00:00
committed by Robin Gloster
parent b584a786ec
commit 2820e1df5c
5 changed files with 42 additions and 0 deletions
@@ -0,0 +1,7 @@
{ runCommand }:
{ pname, version, src }:
runCommand "roundcube-plugin-${pname}-${version}" { } ''
mkdir -p $out/plugins/
cp -r ${src} $out/plugins/${pname}
''