diff options
| author | Artturi <Artturin@artturin.com> | 2023-11-10 21:19:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-10 21:19:38 +0200 |
| commit | 39f36294d40f6cd928f51bccafe44000a4c51109 (patch) | |
| tree | 08ebc3731a9248b0abbfe595fc5de4379c9cbb83 | |
| parent | Merge pull request #266608 from NixOS/backport-266583-to-release-23.05 (diff) | |
| parent | ejabberd: Add awk to ejabberdctl path (diff) | |
| download | nixpkgs-39f36294d40f6cd928f51bccafe44000a4c51109.tar.gz | |
Merge pull request #266719 from NixOS/backport-230650-to-release-23.05
| -rw-r--r-- | pkgs/servers/xmpp/ejabberd/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index 671e88c52810..1cbd33cd4fd9 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -1,6 +1,7 @@ { stdenv, writeScriptBin, makeWrapper, lib, fetchurl, git, cacert, libpng, libjpeg, libwebp , erlang, openssl, expat, libyaml, bash, gnused, gnugrep, coreutils, util-linux, procps, gd , flock, autoreconfHook +, gawk , nixosTests , withMysql ? false , withPgsql ? false @@ -12,7 +13,7 @@ }: let - ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils util-linux procps ]; + ctlpath = lib.makeBinPath [ bash gnused gnugrep gawk coreutils util-linux procps ]; in stdenv.mkDerivation rec { pname = "ejabberd"; version = "23.01"; |
