From 2c5599f59ba7f05b528cb4c7731fe3dd493ebe6a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 31 Aug 2009 15:12:42 +0000 Subject: [PATCH] * Urgh, cleanSource doesn't work on paths in the store. Looks like a bug. svn path=/nixos/trunk/; revision=16905 --- modules/services/web-servers/apache-httpd/subversion.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/web-servers/apache-httpd/subversion.nix b/modules/services/web-servers/apache-httpd/subversion.nix index d22b2b580d4..d9febdf44c0 100644 --- a/modules/services/web-servers/apache-httpd/subversion.nix +++ b/modules/services/web-servers/apache-httpd/subversion.nix @@ -31,7 +31,7 @@ let # Build the maintenance scripts and commit hooks. scripts = substituteInAll { name = "svn-server-scripts"; - src = pkgs.lib.cleanSource "${servicesPath}/subversion/src/scripts"; + src = /* pkgs.lib.cleanSource */ "${servicesPath}/subversion/src/scripts"; # The variables to substitute: @@ -232,7 +232,7 @@ let staticFiles = substituteInSome { name = "svn-static-files"; - src = pkgs.lib.cleanSource "${servicesPath}/subversion/root"; + src = /* pkgs.lib.cleanSource */ "${servicesPath}/subversion/root"; files = ["xsl/svnindex.xsl"]; inherit urlPrefix; };