done now
This commit is contained in:
parent
03c63c0722
commit
c669f4082b
|
@ -32,7 +32,7 @@
|
||||||
nativeBuildInputs = with pkgs; [pkg-config cmake];
|
nativeBuildInputs = with pkgs; [pkg-config cmake];
|
||||||
buildInputs = with pkgs;
|
buildInputs = with pkgs;
|
||||||
[
|
[
|
||||||
openssl
|
openssl
|
||||||
zlib-ng
|
zlib-ng
|
||||||
]
|
]
|
||||||
++ lib.optionals stdenv.isDarwin [
|
++ lib.optionals stdenv.isDarwin [
|
||||||
|
@ -84,11 +84,12 @@
|
||||||
default = 1027;
|
default = 1027;
|
||||||
description = "The UDP port to host the server on";
|
description = "The UDP port to host the server on";
|
||||||
};
|
};
|
||||||
proximity = {
|
proximity = lib.mkOption {
|
||||||
type = types.nullOr lib.types.attrs;
|
type = lib.types.nullOr lib.types.attrs;
|
||||||
default = null;
|
default = null;
|
||||||
|
} // {
|
||||||
port = lib.mkOption {
|
port = lib.mkOption {
|
||||||
type = types.nullOr lib.types.port;
|
type = lib.types.port;
|
||||||
example = 4433;
|
example = 4433;
|
||||||
description = "The UDP port to host the proximity chat server on";
|
description = "The UDP port to host the proximity chat server on";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue