about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/riot
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2019-12-10 15:54:05 +0100
committerJanne Heß <janne@hess.ooo>2019-12-10 15:54:05 +0100
commit9e710b29fd9712feae3b14d9109cab0fbb1ab537 (patch)
tree7a4dd69398e78d7da7b320a71ac892081b78e736 /pkgs/applications/networking/instant-messengers/riot
parent68708349f111da4c2c9ec3b4ac6e5105796ee9c4 (diff)
riot-web: Run install hooks
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/riot')
-rw-r--r--pkgs/applications/networking/instant-messengers/riot/riot-web.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
index 93c3d837b050e..b2e50ffce64b1 100644
--- a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
+++ b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix
@@ -17,9 +17,13 @@ stdenv.mkDerivation rec {
       then writeText "riot-config.json" conf
       else "$out/config.sample.json";
   in ''
+    runHook preInstall
+
     mkdir -p $out/
     cp -R . $out/
     ln -s ${configFile} $out/config.json
+
+    runHook postInstall
   '';
 
   meta = {