summary refs log tree commit diff
path: root/pkgs/servers/limesurvey
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2019-08-24 08:15:13 -0400
committerAaron Andersen <aaron@fosslib.net>2019-08-24 08:15:13 -0400
commit0ebe0eaf29aacad628b723cf625e2f1978628534 (patch)
treee122e189117d2946c2ff849f7dc9cfb2918716b5 /pkgs/servers/limesurvey
parent7294e168cdc8c528affd63710449d5ad79488208 (diff)
downloadnixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar.gz
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar.bz2
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar.lz
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar.xz
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.tar.zst
nixpkgs-0ebe0eaf29aacad628b723cf625e2f1978628534.zip
limesurvey: 3.17.1+190408 -> 3.17.12+190823
Diffstat (limited to 'pkgs/servers/limesurvey')
-rw-r--r--pkgs/servers/limesurvey/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/servers/limesurvey/default.nix b/pkgs/servers/limesurvey/default.nix
index ad1038bbc47..21863018087 100644
--- a/pkgs/servers/limesurvey/default.nix
+++ b/pkgs/servers/limesurvey/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "limesurvey";
-  version = "3.17.1+190408";
+  version = "3.17.12+190823";
 
   src = fetchFromGitHub {
     owner = "LimeSurvey";
     repo = "LimeSurvey";
     rev = version;
-    sha256 = "0d6dgw9af492vn5yg2hq82ipq4p80c19lhky0dpwrm5kv67kxbhv";
+    sha256 = "1i7jpxndrbya5ggl4babscwzmxx4c0jwri5kpl7h2ihqrn90m4b5";
   };
 
   phpConfig = writeText "config.php" ''
@@ -18,9 +18,13 @@ stdenv.mkDerivation rec {
   '';
 
   installPhase = ''
+    runHook preInstall
+
     mkdir -p $out/share/limesurvey
     cp -r . $out/share/limesurvey
     cp ${phpConfig} $out/share/limesurvey/application/config/config.php
+
+    runHook postInstall
   '';
 
   meta = with stdenv.lib; {