mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
* Urgh, cleanSource doesn't work on paths in the store. Looks like a
bug. svn path=/nixos/trunk/; revision=16905
This commit is contained in:
parent
9359bf11d5
commit
2c5599f59b
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue