summary refs log tree commit diff
path: root/pkgs/servers/xmpp/openfire/default.nix
blob: ab377e3d53b13e0dd9f2efc4627c0944357ecf8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, jre }:

stdenv.mkDerivation rec {
  pname = "openfire";
  version  = "3_6_3";

  src = fetchurl {
    url = "http://www.igniterealtime.org/downloadServlet?filename=openfire/openfire_${version}.tar.gz";
    sha256 = "0ibzhmh9qw4lmx45ir1i280p30npgwnj7vrkl432kj3zi7hp79q2";
  };

  buildInputs = [ jre ];

  installPhase = ''
    sed -e 's@\(common_jvm_locations=\).*@\1${jre}@' -i bin/openfire
    cp -r . $out
    rm -r $out/logs
    mv $out/conf $out/conf.inst
    ln -s /var/log/openfire $out/logs
    ln -s /etc/openfire $out/conf
  ''; 

  meta = {
    description = "XMPP server in Java";
    platforms = stdenv.lib.platforms.unix;
    # Some security advisories seem to apply, and each next version wants to
    # write into larger parts of installation directory; installation is just
    # unpacking, though
    broken = true;
  };
}