aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/webapps/davical/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/webapps/davical/default.nix b/pkgs/webapps/davical/default.nix
index fefc00f..52d8736 100644
--- a/pkgs/webapps/davical/default.nix
+++ b/pkgs/webapps/davical/default.nix
@@ -1,4 +1,4 @@
1{ config ? "/etc/davical/config.php", stdenv, fetchurl, gettext }: 1{ davical_config ? "/etc/davical/config.php", stdenv, fetchurl, gettext }:
2stdenv.mkDerivation rec { 2stdenv.mkDerivation rec {
3 version = "1.1.7"; 3 version = "1.1.7";
4 name = "davical-${version}"; 4 name = "davical-${version}";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
14 installPhase = '' 14 installPhase = ''
15 mkdir -p $out 15 mkdir -p $out
16 cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out 16 cp -ra config dba docs htdocs inc locale po scripts testing zonedb $out
17 ln -s ${config} $out/config/config.php 17 ln -s ${davical_config} $out/config/config.php
18 ''; 18 '';
19 buildInputs = [ gettext ]; 19 buildInputs = [ gettext ];
20} 20}