mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +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.
8 lines
164 B
Nix
8 lines
164 B
Nix
{ runCommand }:
|
|
{ pname, version, src }:
|
|
|
|
runCommand "roundcube-plugin-${pname}-${version}" { } ''
|
|
mkdir -p $out/plugins/
|
|
cp -r ${src} $out/plugins/${pname}
|
|
''
|