about summary refs log tree commit diff
path: root/pkgs/servers/xmpp
diff options
context:
space:
mode:
authorMarkus Kohlhase <mail@markus-kohlhase.de>2014-09-02 17:08:56 +0200
committerMarkus Kohlhase <mail@markus-kohlhase.de>2014-10-11 18:53:43 +0200
commitd86c2c30c52fd3bcf971b9d3e370823135a2c8b7 (patch)
treeb729136ba22b9627dc7c82e186b3b8dd04c8c6e2 /pkgs/servers/xmpp
parentaafca4dd5109e796db742eab1788ff6a5f279f31 (diff)
downloadnixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar.gz
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar.bz2
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar.lz
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar.xz
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.tar.zst
nixlib-d86c2c30c52fd3bcf971b9d3e370823135a2c8b7.zip
prosody: packaged as a service
Conflicts:
	nixos/modules/misc/ids.nix
Diffstat (limited to 'pkgs/servers/xmpp')
-rw-r--r--pkgs/servers/xmpp/prosody/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/servers/xmpp/prosody/default.nix b/pkgs/servers/xmpp/prosody/default.nix
new file mode 100644
index 000000000000..4bd1b594c268
--- /dev/null
+++ b/pkgs/servers/xmpp/prosody/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchurl, lua5, luasocket, luasec, luaexpat, luafilesystem, libidn, openssl, makeWrapper }:
+
+let
+  libs        = [ luasocket luasec luaexpat luafilesystem ];
+  getPath     = lib : type : "${lib}/lib/lua/${lua5.luaversion}/?.${type};${lib}/share/lua/${lua5.luaversion}/?.${type}";
+  getLuaPath  = lib : getPath lib "lua";
+  getLuaCPath = lib : getPath lib "so";
+  luaPath     = stdenv.lib.concatStringsSep ";" (map getLuaPath  libs);
+  luaCPath    = stdenv.lib.concatStringsSep ";" (map getLuaCPath libs);
+in
+
+stdenv.mkDerivation rec {
+  version = "0.9.4";
+  name = "prosody-${version}";
+  src = fetchurl {
+    url = "http://prosody.im/downloads/source/${name}.tar.gz";
+    sha256 = "be87cf31901a25477869b4ebd52e298f63a5effacae526911a0be876cc82e1c6";
+  };
+
+  buildInputs = [ lua5 luasocket luasec luaexpat libidn openssl makeWrapper ];
+
+  configureFlags = [
+    "--ostype=linux"
+    "--with-lua-include=${lua5}/include"
+    "--with-lua=${lua5}"
+  ];
+
+  postInstall = ''
+      wrapProgram $out/bin/prosody \
+        --set LUA_PATH '"${luaPath};"' \
+        --set LUA_CPATH '"${luaCPath};"'
+      wrapProgram $out/bin/prosodyctl \
+        --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
+        --set LUA_PATH '"${luaPath};"' \
+        --set LUA_CPATH '"${luaCPath};"'
+    '';
+
+  meta = {
+    description = "Open-source XMPP application server written in Lua";
+    license = stdenv.lib.licenses.mit;
+    homepage = http://www.prosody.im;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.flosse ];
+  };
+}