treewide: implement auto importing for modules
Reduce maintenance burden and increase efficiency by automatically importing modules following a specific convention. Co-authored-by: awwpotato <awwpotato@voidq.com> Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
fefeb0e928
commit
4fca600cb1
461 changed files with 72 additions and 474 deletions
203
modules/programs/streamlink/default.nix
Normal file
203
modules/programs/streamlink/default.nix
Normal file
|
|
@ -0,0 +1,203 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
cfg = config.programs.streamlink;
|
||||
|
||||
renderSettings =
|
||||
settings:
|
||||
lib.concatLines (
|
||||
lib.remove "" (
|
||||
lib.mapAttrsToList (
|
||||
name: value:
|
||||
if (builtins.isBool value) then
|
||||
if value then name else ""
|
||||
else if (builtins.isList value) then
|
||||
lib.concatStringsSep "\n" (builtins.map (item: "${name}=${builtins.toString item}") value)
|
||||
else
|
||||
"${name}=${builtins.toString value}"
|
||||
) settings
|
||||
)
|
||||
);
|
||||
|
||||
pluginType = lib.types.submodule {
|
||||
options = {
|
||||
src = lib.mkOption {
|
||||
type = with lib.types; nullOr (either path lines);
|
||||
default = null;
|
||||
description = ''
|
||||
Source of the custom plugin. The value should be a path to the
|
||||
plugin file, or the text of the plugin code. Will be linked to
|
||||
{file}`$XDG_DATA_HOME/streamlink/plugins/<name>.py` (linux) or
|
||||
{file}`Library/Application Support/streamlink/plugins/<name>.py` (darwin).
|
||||
'';
|
||||
example = lib.literalExpression "./custom_plugin.py";
|
||||
};
|
||||
|
||||
settings = lib.mkOption {
|
||||
type =
|
||||
with lib.types;
|
||||
attrsOf (oneOf [
|
||||
bool
|
||||
int
|
||||
float
|
||||
str
|
||||
(listOf (oneOf [
|
||||
int
|
||||
float
|
||||
str
|
||||
]))
|
||||
]);
|
||||
default = { };
|
||||
example = lib.literalExpression ''
|
||||
{
|
||||
quiet = true;
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
Configuration for the specific plugin, written to
|
||||
{file}`$XDG_CONFIG_HOME/streamlink/config.<name>` (linux) or
|
||||
{file}`Library/Application Support/streamlink/config.<name>` (darwin).
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
in
|
||||
{
|
||||
meta.maintainers = [ lib.hm.maintainers.folliehiyuki ];
|
||||
|
||||
options.programs.streamlink = {
|
||||
enable = lib.mkEnableOption "streamlink";
|
||||
|
||||
package = lib.mkPackageOption pkgs "streamlink" { nullable = true; };
|
||||
|
||||
settings = lib.mkOption {
|
||||
type =
|
||||
with lib.types;
|
||||
attrsOf (oneOf [
|
||||
bool
|
||||
int
|
||||
float
|
||||
str
|
||||
(listOf (oneOf [
|
||||
int
|
||||
float
|
||||
str
|
||||
]))
|
||||
]);
|
||||
default = { };
|
||||
example = lib.literalExpression ''
|
||||
{
|
||||
player = "''${pkgs.mpv}/bin/mpv";
|
||||
player-args = "--cache 2048";
|
||||
player-no-close = true;
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
Global configuration options for streamlink. It will be written to
|
||||
{file}`$XDG_CONFIG_HOME/streamlink/config` (linux) or
|
||||
{file}`Library/Application Support/streamlink/config` (darwin).
|
||||
'';
|
||||
};
|
||||
|
||||
plugins = lib.mkOption {
|
||||
description = ''
|
||||
Streamlink plugins.
|
||||
|
||||
If a source is set, the custom plugin will be linked to the data directory.
|
||||
|
||||
Additional configuration specific to the plugin, if defined, will be
|
||||
written to the config directory, and override global settings.
|
||||
'';
|
||||
type = lib.types.attrsOf pluginType;
|
||||
default = { };
|
||||
example = lib.literalExpression ''
|
||||
{
|
||||
custom_plugin = {
|
||||
src = ./custom_plugin.py;
|
||||
settings = {
|
||||
quiet = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable (
|
||||
lib.mkMerge [
|
||||
{ home.packages = lib.mkIf (cfg.package != null) [ cfg.package ]; }
|
||||
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||||
xdg.configFile =
|
||||
{
|
||||
"streamlink/config" = lib.mkIf (cfg.settings != { }) {
|
||||
text = renderSettings cfg.settings;
|
||||
};
|
||||
}
|
||||
// (lib.mapAttrs' (
|
||||
name: value:
|
||||
lib.nameValuePair "streamlink/config.${name}" (
|
||||
lib.mkIf (value.settings != { }) {
|
||||
text = renderSettings value.settings;
|
||||
}
|
||||
)
|
||||
) cfg.plugins);
|
||||
|
||||
xdg.dataFile = lib.mapAttrs' (
|
||||
name: value:
|
||||
lib.nameValuePair "streamlink/plugins/${name}.py" (
|
||||
lib.mkIf (value.src != null) (
|
||||
if (builtins.isPath value.src) then
|
||||
{
|
||||
source = value.src;
|
||||
}
|
||||
else
|
||||
{
|
||||
text = value.src;
|
||||
}
|
||||
)
|
||||
)
|
||||
) cfg.plugins;
|
||||
})
|
||||
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
||||
home.file =
|
||||
{
|
||||
"Library/Application Support/streamlink/config" = lib.mkIf (cfg.settings != { }) {
|
||||
text = renderSettings cfg.settings;
|
||||
};
|
||||
}
|
||||
// (lib.mapAttrs' (
|
||||
name: value:
|
||||
lib.nameValuePair "Library/Application Support/streamlink/config.${name}" (
|
||||
lib.mkIf (value.settings != { }) {
|
||||
text = renderSettings value.settings;
|
||||
}
|
||||
)
|
||||
) cfg.plugins)
|
||||
// (lib.mapAttrs' (
|
||||
name: value:
|
||||
lib.nameValuePair "Library/Application Support/streamlink/plugins/${name}.py" (
|
||||
lib.mkIf (value.src != null) (
|
||||
if (builtins.isPath value.src) then
|
||||
{
|
||||
source = value.src;
|
||||
}
|
||||
else
|
||||
{
|
||||
text = value.src;
|
||||
}
|
||||
)
|
||||
)
|
||||
) cfg.plugins);
|
||||
})
|
||||
]
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue