about summary refs log tree commit diff
path: root/pkgs/servers/irc
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-05-14 20:48:12 +0200
committerProfpatsch <mail@profpatsch.de>2021-05-14 23:02:20 +0200
commit104af4aafad75f0e101dd27ba5f747e8aef2d8df (patch)
treecf0cb10ee145ff852b4f156c64377660b91cd174 /pkgs/servers/irc
parentabe7335e7e271122a20c63f37f1dd59ee8a5e918 (diff)
inspircd: run configure phase hooks
Diffstat (limited to 'pkgs/servers/irc')
-rw-r--r--pkgs/servers/irc/inspircd/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/servers/irc/inspircd/default.nix b/pkgs/servers/irc/inspircd/default.nix
index 3c5965e872a43..561151bfa7549 100644
--- a/pkgs/servers/irc/inspircd/default.nix
+++ b/pkgs/servers/irc/inspircd/default.nix
@@ -160,6 +160,8 @@ stdenv.mkDerivation rec {
   buildInputs = extraInputs;
 
   configurePhase = ''
+    runHook preConfigure
+
     patchShebangs configure make/*.pl
 
     # configure is executed twice, once to set the extras
@@ -183,6 +185,8 @@ stdenv.mkDerivation rec {
       --module-dir  ${placeholder "lib"}/lib/inspircd \
       --runtime-dir /var/run \
       --script-dir  ${placeholder "bin"}/share/inspircd \
+
+    runHook postConfigure
   '';
 
   postInstall = ''