mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
prosody: install prosody-migrator tool
This commit is contained in:
parent
680d320123
commit
e2ade56177
1 changed files with 9 additions and 0 deletions
|
@ -59,6 +59,10 @@ stdenv.mkDerivation rec {
|
|||
"--with-lua=${lua5}"
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
make -C tools/migration
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
${concatMapStringsSep "\n" (module: ''
|
||||
cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
|
||||
|
@ -70,6 +74,11 @@ stdenv.mkDerivation rec {
|
|||
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
||||
--prefix LUA_PATH ';' "$LUA_PATH" \
|
||||
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
||||
|
||||
make -C tools/migration install
|
||||
wrapProgram $out/bin/prosody-migrator \
|
||||
--prefix LUA_PATH ';' "$LUA_PATH" \
|
||||
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
|
|
Loading…
Reference in a new issue