3
0
Fork 0
forked from mirrors/nixpkgs

Use PAM in ejabberd

svn path=/nixpkgs/trunk/; revision=15008
This commit is contained in:
Michael Raskin 2009-04-13 09:36:07 +00:00
parent 9619e184cf
commit 60dceccc9f
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, expat, erlang, zlib, openssl}:
{stdenv, fetchurl, expat, erlang, zlib, openssl, pam}:
stdenv.mkDerivation {
name = "ejabberd-2.0.0";
@ -6,13 +6,14 @@ stdenv.mkDerivation {
url = http://www.process-one.net/downloads/ejabberd/2.0.0/ejabberd-2.0.0.tar.gz;
sha256 = "086e105cb402ef868e3187277db1486807e1b34a2e3e3679f0ee6de1e5fd2e54";
};
buildInputs = [ expat erlang zlib openssl ];
buildInputs = [ expat erlang zlib openssl pam ];
patchPhase = ''
sed -i -e "s|erl \\\|${erlang}/bin/erl \\\|" src/ejabberdctl.template
'';
preConfigure = ''
cd src
'';
configureFlags = ["--enable-pam"];
meta = {
description = "Open-source XMPP application server written in Erlang";

View file

@ -6551,7 +6551,8 @@ let
};
ejabberd = import ../servers/xmpp/ejabberd {
inherit fetchurl stdenv expat erlang zlib openssl;
inherit fetchurl stdenv expat erlang zlib openssl
pam;
};
fingerd_bsd = import ../servers/fingerd/bsd-fingerd {