diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 01:35:06 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2023-10-04 02:11:48 +0200 |
commit | 1a64deeb894dc95e2645a75771732c6cc53a79ad (patch) | |
tree | 1b9df4838f894577a09b9b260151756272efeb53 /flakes/mypackages/pkgs/webapps/davical | |
parent | fa25ffd4583cc362075cd5e1b4130f33306103f0 (diff) | |
download | Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.gz Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.tar.zst Nix-1a64deeb894dc95e2645a75771732c6cc53a79ad.zip |
Squash changes containing private information
There were a lot of changes since the previous commit, but a lot of them
contained personnal information about users. All thos changes got
stashed into a single commit (history is kept in a different place) and
private information was moved in a separate private repository
Diffstat (limited to 'flakes/mypackages/pkgs/webapps/davical')
-rw-r--r-- | flakes/mypackages/pkgs/webapps/davical/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/flakes/mypackages/pkgs/webapps/davical/default.nix b/flakes/mypackages/pkgs/webapps/davical/default.nix new file mode 100644 index 0000000..045a93b --- /dev/null +++ b/flakes/mypackages/pkgs/webapps/davical/default.nix | |||
@@ -0,0 +1,23 @@ | |||
1 | { davical_config ? "/etc/davical/config.php", stdenv, fetchurl, gettext }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | version = "1.1.10"; | ||
4 | name = "davical-${version}"; | ||
5 | src = fetchurl { | ||
6 | url = "https://www.davical.org/downloads/davical_${version}.orig.tar.xz"; | ||
7 | sha256 = "1d8zw558qrz2rybdv853ai04ar7v5a2dsypnffapx9ihgnrv4hq3"; | ||
8 | }; | ||
9 | unpackCmd = '' | ||
10 | tar --one-top-level -xf $curSrc | ||
11 | ''; | ||
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 | ''; | ||
17 | installPhase = '' | ||
18 | mkdir -p $out | ||
19 | cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out | ||
20 | ln -s ${davical_config} $out/config/config.php | ||
21 | ''; | ||
22 | buildInputs = [ gettext ]; | ||
23 | } | ||