nixpkgs/nixos/modules/services/misc/svnserve.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
920 B
Nix
Raw Permalink Normal View History

# SVN server
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.svnserve;
in
{
###### interface
options = {
services.svnserve = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to enable svnserve to serve Subversion repositories through the SVN protocol.";
};
svnBaseDir = lib.mkOption {
type = lib.types.str;
default = "/repos";
2020-11-22 17:23:53 +10:00
description = "Base directory from which Subversion repositories are accessed.";
};
};
};
###### implementation
config = lib.mkIf cfg.enable {
2016-01-06 06:50:18 +00:00
systemd.services.svnserve = {
after = [ "network.target" ];
2016-01-06 06:50:18 +00:00
wantedBy = [ "multi-user.target" ];
preStart = "mkdir -p ${cfg.svnBaseDir}";
2018-12-19 22:38:06 +01:00
script = "${pkgs.subversion.out}/bin/svnserve -r ${cfg.svnBaseDir} -d --foreground --pid-file=/run/svnserve.pid";
};
};
}