29027fd1e1
Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
47 lines
847 B
Nix
47 lines
847 B
Nix
# SVN server
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.svnserve;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.svnserve = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
description = "Whether to enable svnserve to serve Subversion repositories through the SVN protocol.";
|
|
};
|
|
|
|
svnBaseDir = mkOption {
|
|
default = "/repos";
|
|
description = "Base directory from which Subversion repositories are accessed.";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
jobs.svnserve = {
|
|
startOn = "started network-interfaces";
|
|
stopOn = "stopping network-interfaces";
|
|
|
|
preStart = "mkdir -p ${cfg.svnBaseDir}";
|
|
|
|
exec = "${pkgs.subversion}/bin/svnserve -r ${cfg.svnBaseDir} -d --foreground --pid-file=/var/run/svnserve.pid";
|
|
};
|
|
};
|
|
}
|