Merge pull request #6518 from ehmry/u9fs

U9fs
This commit is contained in:
lethalman 2015-02-26 09:41:18 +01:00
commit d791335ac2
4 changed files with 102 additions and 0 deletions

View file

@ -228,6 +228,7 @@
./services/network-filesystems/rsyncd.nix
./services/network-filesystems/samba.nix
./services/network-filesystems/diod.nix
./services/network-filesystems/u9fs.nix
./services/network-filesystems/yandex-disk.nix
./services/networking/amuled.nix
./services/networking/atftpd.nix

View file

@ -0,0 +1,75 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.u9fs;
in
{
options = {
services.u9fs = {
enable = mkOption {
type = types.bool;
default = false;
description = "Whether to run the u9fs 9P server for Unix.";
};
listenStreams = mkOption {
type = types.listOf types.str;
default = [ "564" ];
example = [ "192.168.16.1:564" ];
description = ''
Sockets to listen for clients on.
See <command>man 5 systemd.socket</command> for socket syntax.
'';
};
extraArgs = mkOption {
type = types.str;
default = "";
example = "-a none -u nobody";
description =
''
Extra arguments to pass on invocation,
see <command>man 4 u9fs</command>
'';
};
fsroot = mkOption {
type = types.path;
default = "/";
example = "/srv";
description = "File system root to serve to clients.";
};
};
};
config = mkIf cfg.enable {
systemd = {
sockets.u9fs = {
description = "U9fs Listening Socket";
wantedBy = [ "sockets.target" ];
inherit (cfg) listenStreams;
socketConfig.Accept = "yes";
};
services."u9fs@" = {
description = "9P Protocol Server";
reloadIfChanged = true;
requires = [ "u9fs.socket" ];
serviceConfig =
{ ExecStart = "-${pkgs.u9fs}/bin/u9fs ${cfg.extraArgs} ${cfg.fsroot}";
StandardInput = "socket";
StandardError = "journal";
};
};
};
};
}

View file

@ -0,0 +1,24 @@
{ stdenv, fetchhg }:
stdenv.mkDerivation {
name = "u9fs-20110513";
src = fetchhg {
url = https://code.google.com/p/u9fs;
rev = "9474edb23b11";
sha256 = "0irwyk8vnvx0fmz8lmbdb2jrlvas8imr61jr76a1pkwi9wpf2wv6";
};
installPhase =
''
mkdir -p $out/bin $out/share/man4
cp u9fs $out/bin; cp u9fs.man $out/share/man4
'';
meta = with stdenv.lib;
{ description = "Serve 9P from Unix";
homepage = https://code.google.com/p/u9fs;
license = licenses.free;
maintainers = [ maintainers.emery ];
platforms = platforms.unix;
};
}

View file

@ -2779,6 +2779,8 @@ let
txt2man = callPackage ../tools/misc/txt2man { };
u9fs = callPackage ../servers/u9fs { };
ucl = callPackage ../development/libraries/ucl { };
ucspi-tcp = callPackage ../tools/networking/ucspi-tcp { };