pkgs/servers: stdenv.lib -> lib
This commit is contained in:
@@ -107,7 +107,7 @@ in stdenv.mkDerivation rec {
|
||||
-e 's,\(^ *JOT=\).*,\1,' \
|
||||
-e 's,\(^ *CONNLOCKDIR=\).*,\1/var/lock/ejabberdctl,' \
|
||||
$out/sbin/ejabberdctl
|
||||
wrapProgram $out/lib/eimp-*/priv/bin/eimp --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libpng libjpeg libwebp ]}"
|
||||
wrapProgram $out/lib/eimp-*/priv/bin/eimp --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libpng libjpeg libwebp ]}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, jre }:
|
||||
{ lib, stdenv, fetchurl, jre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "openfire";
|
||||
@@ -18,11 +18,11 @@ stdenv.mkDerivation rec {
|
||||
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;
|
||||
platforms = 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
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
assert withLibevent -> luaevent != null;
|
||||
assert withDBI -> luadbi != null;
|
||||
|
||||
with stdenv.lib;
|
||||
with lib;
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
Reference in New Issue
Block a user