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

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

47 lines
925 B
Nix
Raw Normal View History

# SVN server
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.svnserve;
in
{
###### interface
options = {
services.svnserve = {
enable = mkOption {
type = types.bool;
default = false;
description = lib.mdDoc "Whether to enable svnserve to serve Subversion repositories through the SVN protocol.";
};
svnBaseDir = mkOption {
2021-01-31 11:15:45 +00:00
type = types.str;
default = "/repos";
2020-11-22 07:23:53 +00:00
description = lib.mdDoc "Base directory from which Subversion repositories are accessed.";
};
};
};
###### implementation
config = 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 21:38:06 +00:00
script = "${pkgs.subversion.out}/bin/svnserve -r ${cfg.svnBaseDir} -d --foreground --pid-file=/run/svnserve.pid";
};
};
}