aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2021-06-03 00:46:15 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-06-03 00:46:15 +0200
commitbd493c8f9b2d83f41556e55f2e0fbc59fa46a75a (patch)
tree550489196f3249b56f634bfce5e9d62bacab858a
parenteafcef976ef025946e78c3de0c4366f06198176b (diff)
downloadNix-bd493c8f9b2d83f41556e55f2e0fbc59fa46a75a.tar.gz
Nix-bd493c8f9b2d83f41556e55f2e0fbc59fa46a75a.tar.zst
Nix-bd493c8f9b2d83f41556e55f2e0fbc59fa46a75a.zip
Fix davical connection
-rw-r--r--pkgs/webapps/davical/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/webapps/davical/default.nix b/pkgs/webapps/davical/default.nix
index 2d27450..045a93b 100644
--- a/pkgs/webapps/davical/default.nix
+++ b/pkgs/webapps/davical/default.nix
@@ -10,6 +10,10 @@ stdenv.mkDerivation rec {
10 tar --one-top-level -xf $curSrc 10 tar --one-top-level -xf $curSrc
11 ''; 11 '';
12 makeFlags = "all"; 12 makeFlags = "all";
13 patchPhase = ''
14 # https://gitlab.com/davical-project/davical/-/issues/229
15 sed -i -e 's/"newpass1"/"newpass1", "password"/g' htdocs/always.php
16 '';
13 installPhase = '' 17 installPhase = ''
14 mkdir -p $out 18 mkdir -p $out
15 cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out 19 cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out