mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797. Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
parent
0587bb0877
commit
05580f4b44
1731 changed files with 2280 additions and 2118 deletions
|
@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Modular audio codec server";
|
description = "Modular audio codec server";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = teams.c3d2.members;
|
teams = [ teams.c3d2 ];
|
||||||
mainProgram = "codecserver";
|
mainProgram = "codecserver";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,6 +128,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "Cross-desktop display manager";
|
description = "Cross-desktop display manager";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
|
teams = [ teams.pantheon ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -188,7 +188,8 @@ runCommand drvName
|
||||||
# binaries are also distributed as proprietary software (unlike the
|
# binaries are also distributed as proprietary software (unlike the
|
||||||
# source-code itself).
|
# source-code itself).
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = teams.android.members ++ (with maintainers; [ robbins ]);
|
maintainers = with maintainers; [ robbins ];
|
||||||
|
teams = [ teams.android ];
|
||||||
mainProgram = pname;
|
mainProgram = pname;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -324,11 +324,19 @@ let
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers =
|
maintainers =
|
||||||
rec {
|
rec {
|
||||||
stable =
|
stable = with lib.maintainers; [
|
||||||
lib.teams.android.members
|
alapshin
|
||||||
++ (with lib.maintainers; [
|
];
|
||||||
alapshin
|
beta = stable;
|
||||||
]);
|
canary = stable;
|
||||||
|
dev = stable;
|
||||||
|
}
|
||||||
|
."${channel}";
|
||||||
|
teams =
|
||||||
|
rec {
|
||||||
|
stable = with lib.teams; [
|
||||||
|
android
|
||||||
|
];
|
||||||
beta = stable;
|
beta = stable;
|
||||||
canary = stable;
|
canary = stable;
|
||||||
dev = stable;
|
dev = stable;
|
||||||
|
|
|
@ -55,7 +55,8 @@ let
|
||||||
+ lib.optionalString meta.isOpenSource (
|
+ lib.optionalString meta.isOpenSource (
|
||||||
if fromSource then " (built from source)" else " (patched binaries from jetbrains)"
|
if fromSource then " (built from source)" else " (patched binaries from jetbrains)"
|
||||||
);
|
);
|
||||||
maintainers = lib.teams.jetbrains.members ++ map (x: lib.maintainers."${x}") meta.maintainers;
|
maintainers = map (x: lib.maintainers."${x}") meta.maintainers;
|
||||||
|
teams = [ lib.teams.jetbrains ];
|
||||||
license = if meta.isOpenSource then lib.licenses.asl20 else lib.licenses.unfree;
|
license = if meta.isOpenSource then lib.licenses.asl20 else lib.licenses.unfree;
|
||||||
sourceProvenance =
|
sourceProvenance =
|
||||||
if fromSource then
|
if fromSource then
|
||||||
|
|
|
@ -364,7 +364,7 @@ let
|
||||||
homepage
|
homepage
|
||||||
mainProgram
|
mainProgram
|
||||||
license
|
license
|
||||||
maintainers
|
teams
|
||||||
platforms
|
platforms
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ vscode-utils.buildVscodeMarketplaceExtension {
|
||||||
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-bicep";
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-bicep";
|
||||||
homepage = "https://github.com/Azure/bicep/tree/main/src/vscode-bicep";
|
homepage = "https://github.com/Azure/bicep/tree/main/src/vscode-bicep";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ ] ++ lib.teams.stridtech.members;
|
teams = [ lib.teams.stridtech ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ stdenv.mkDerivation (
|
||||||
inherit mainProgram;
|
inherit mainProgram;
|
||||||
inherit (retroarch-bare.meta) platforms;
|
inherit (retroarch-bare.meta) platforms;
|
||||||
homepage = "https://www.libretro.com/";
|
homepage = "https://www.libretro.com/";
|
||||||
maintainers = with lib.maintainers; [ ] ++ lib.teams.libretro.members;
|
teams = [ lib.teams.libretro ];
|
||||||
} // (args.meta or { });
|
} // (args.meta or { });
|
||||||
}
|
}
|
||||||
// extraArgs
|
// extraArgs
|
||||||
|
|
|
@ -165,7 +165,8 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
|
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
|
||||||
homepage = "https://grass.osgeo.org/";
|
homepage = "https://grass.osgeo.org/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; teams.geospatial.members ++ [ mpickering ];
|
maintainers = with maintainers; [ mpickering ];
|
||||||
|
teams = [ teams.geospatial ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
mainProgram = "grass";
|
mainProgram = "grass";
|
||||||
};
|
};
|
||||||
|
|
|
@ -201,7 +201,8 @@ mkDerivation rec {
|
||||||
description = "Free and Open Source Geographic Information System";
|
description = "Free and Open Source Geographic Information System";
|
||||||
homepage = "https://www.qgis.org";
|
homepage = "https://www.qgis.org";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; teams.geospatial.members ++ [ lsix ];
|
maintainers = with maintainers; [ lsix ];
|
||||||
|
teams = [ teams.geospatial ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,7 +197,8 @@ mkDerivation rec {
|
||||||
description = "Free and Open Source Geographic Information System";
|
description = "Free and Open Source Geographic Information System";
|
||||||
homepage = "https://www.qgis.org";
|
homepage = "https://www.qgis.org";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; teams.geospatial.members ++ [ lsix ];
|
maintainers = with maintainers; [ lsix ];
|
||||||
|
teams = [ teams.geospatial ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html";
|
homepage = "https://jblindsay.github.io/ghrg/WhiteboxTools/index.html";
|
||||||
description = "Advanced geospatial data analysis platform";
|
description = "Advanced geospatial data analysis platform";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = lib.teams.geospatial.members ++ (with lib.maintainers; [ mpickering ]);
|
maintainers = with lib.maintainers; [ mpickering ];
|
||||||
|
teams = [ lib.teams.geospatial ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,6 +92,7 @@ clangStdenv.mkDerivation rec {
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
mainProgram = "decoder";
|
mainProgram = "decoder";
|
||||||
maintainers = with maintainers; [ zendo ] ++ lib.teams.gnome-circle.members;
|
maintainers = with maintainers; [ zendo ];
|
||||||
|
teams = [ teams.gnome-circle ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,6 +81,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
mainProgram = "obfuscate";
|
mainProgram = "obfuscate";
|
||||||
maintainers = with maintainers; [ fgaz ] ++ lib.teams.gnome-circle.members;
|
maintainers = with maintainers; [ fgaz ];
|
||||||
|
teams = [ teams.gnome-circle ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -108,6 +108,7 @@ crystal.buildCrystalPackage rec {
|
||||||
homepage = "https://github.com/GeopJr/Collision";
|
homepage = "https://github.com/GeopJr/Collision";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
mainProgram = "collision";
|
mainProgram = "collision";
|
||||||
maintainers = with maintainers; [ sund3RRR ] ++ lib.teams.gnome-circle.members;
|
maintainers = with maintainers; [ sund3RRR ];
|
||||||
|
teams = [ teams.gnome-circle ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,6 +53,6 @@ buildGoModule rec {
|
||||||
homepage = "https://www.cni.dev/plugins/";
|
homepage = "https://www.cni.dev/plugins/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ ] ++ teams.podman.members;
|
teams = [ teams.podman ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,7 +99,7 @@ let
|
||||||
description = "Lightweight Kubernetes distribution";
|
description = "Lightweight Kubernetes distribution";
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
homepage = "https://k3s.io";
|
homepage = "https://k3s.io";
|
||||||
maintainers = lib.teams.k3s.members;
|
teams = [ lib.teams.k3s ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
|
|
||||||
# resolves collisions with other installations of kubectl, crictl, ctr
|
# resolves collisions with other installations of kubectl, crictl, ctr
|
||||||
|
|
|
@ -99,7 +99,7 @@ buildGoModule rec {
|
||||||
description = "Production-Grade Container Scheduling and Management";
|
description = "Production-Grade Container Scheduling and Management";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = "https://kubernetes.io";
|
homepage = "https://kubernetes.io";
|
||||||
maintainers = with maintainers; [ ] ++ teams.kubernetes.members;
|
teams = [ teams.kubernetes ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
meta = {
|
meta = {
|
||||||
description = "Lightweight matrix client with legacy and mobile browser support";
|
description = "Lightweight matrix client with legacy and mobile browser support";
|
||||||
homepage = "https://github.com/element-hq/hydrogen-web";
|
homepage = "https://github.com/element-hq/hydrogen-web";
|
||||||
maintainers = lib.teams.matrix.members;
|
teams = [ lib.teams.matrix ];
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
platforms = lib.platforms.all;
|
platforms = lib.platforms.all;
|
||||||
inherit (olm.meta) knownVulnerabilities;
|
inherit (olm.meta) knownVulnerabilities;
|
||||||
|
|
|
@ -131,7 +131,7 @@ stdenv.mkDerivation rec {
|
||||||
homepage = "https://gitlab.gnome.org/GNOME/evolution";
|
homepage = "https://gitlab.gnome.org/GNOME/evolution";
|
||||||
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
description = "Personal information management application that provides integrated mail, calendaring and address book functionality";
|
||||||
mainProgram = "evolution";
|
mainProgram = "evolution";
|
||||||
maintainers = teams.gnome.members;
|
teams = [ teams.gnome ];
|
||||||
license = licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -42,7 +42,7 @@ let
|
||||||
homepage = "https://github.com/jketterl/js8py";
|
homepage = "https://github.com/jketterl/js8py";
|
||||||
description = "Library to decode the output of the js8 binary of JS8Call";
|
description = "Library to decode the output of the js8 binary of JS8Call";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.c3d2.members;
|
teams = [ teams.c3d2 ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ let
|
||||||
description = "Set of connectors that are used by OpenWebRX to interface with SDR hardware";
|
description = "Set of connectors that are used by OpenWebRX to interface with SDR hardware";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = teams.c3d2.members;
|
teams = [ teams.c3d2 ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -120,6 +120,6 @@ buildPythonApplication rec {
|
||||||
description = "Simple DSP library and command-line tool for Software Defined Radio";
|
description = "Simple DSP library and command-line tool for Software Defined Radio";
|
||||||
mainProgram = "openwebrx";
|
mainProgram = "openwebrx";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.c3d2.members;
|
teams = [ teams.c3d2 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,6 +66,7 @@ stdenv.mkDerivation rec {
|
||||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ mounium ] ++ teams.sage.members;
|
maintainers = with maintainers; [ mounium ];
|
||||||
|
teams = [ teams.sage ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -256,6 +256,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
pkgConfigModules = [ "libR" ];
|
pkgConfigModules = [ "libR" ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
|
||||||
maintainers = with maintainers; [ jbedo ] ++ teams.sage.members;
|
maintainers = with maintainers; [ jbedo ];
|
||||||
|
teams = [ teams.sage ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -78,7 +78,8 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
downloadPage = "http://pari.math.u-bordeaux.fr/download.html";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ ertes ] ++ teams.sage.members;
|
maintainers = with maintainers; [ ertes ];
|
||||||
|
teams = [ teams.sage ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
mainProgram = "gp";
|
mainProgram = "gp";
|
||||||
};
|
};
|
||||||
|
|
|
@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
inherit (pari.meta)
|
inherit (pari.meta)
|
||||||
license
|
license
|
||||||
maintainers
|
maintainers
|
||||||
|
teams
|
||||||
platforms
|
platforms
|
||||||
broken
|
broken
|
||||||
;
|
;
|
||||||
|
|
|
@ -101,7 +101,8 @@ stdenv.mkDerivation rec {
|
||||||
section in the NixOS manual.
|
section in the NixOS manual.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/stsdc/monitor";
|
homepage = "https://github.com/stsdc/monitor";
|
||||||
maintainers = with maintainers; [ xiorcale ] ++ teams.pantheon.members;
|
maintainers = with maintainers; [ xiorcale ];
|
||||||
|
teams = [ teams.pantheon ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
mainProgram = "com.github.stsdc.monitor";
|
mainProgram = "com.github.stsdc.monitor";
|
||||||
|
|
|
@ -110,7 +110,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
changelog = "https://github.com/sailfishos/timed/releases/tag/${finalAttrs.version}";
|
changelog = "https://github.com/sailfishos/timed/releases/tag/${finalAttrs.version}";
|
||||||
license = lib.licenses.lgpl21Only;
|
license = lib.licenses.lgpl21Only;
|
||||||
mainProgram = "timed";
|
mainProgram = "timed";
|
||||||
maintainers = lib.teams.lomiri.members;
|
teams = [ lib.teams.lomiri ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
pkgConfigModules = [
|
pkgConfigModules = [
|
||||||
"timed-qt${lib.versions.major qtbase.version}"
|
"timed-qt${lib.versions.major qtbase.version}"
|
||||||
|
|
|
@ -9,7 +9,7 @@ bundlerApp {
|
||||||
description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab";
|
description = "Gem that exists to ensure all dependencies are set up for Danger with GitLab";
|
||||||
homepage = "https://github.com/danger/danger-gitlab-gem";
|
homepage = "https://github.com/danger/danger-gitlab-gem";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.serokell.members;
|
teams = [ teams.serokell ];
|
||||||
mainProgram = "danger";
|
mainProgram = "danger";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -299,7 +299,7 @@ stdenv.mkDerivation {
|
||||||
{
|
{
|
||||||
homepage = "http://www.gitlab.com/";
|
homepage = "http://www.gitlab.com/";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = teams.gitlab.members;
|
teams = [ teams.gitlab ];
|
||||||
}
|
}
|
||||||
// (
|
// (
|
||||||
if gitlabEnterprise then
|
if gitlabEnterprise then
|
||||||
|
|
|
@ -31,7 +31,7 @@ buildGoModule rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://www.gitlab.com/";
|
homepage = "http://www.gitlab.com/";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = teams.gitlab.members;
|
teams = [ teams.gitlab ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://a4k-openproject.github.io/a4kSubtitles/";
|
homepage = "https://a4k-openproject.github.io/a4kSubtitles/";
|
||||||
description = "Multi-Source Subtitles Addon";
|
description = "Multi-Source Subtitles Addon";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/zach-morris/script.module.archive_tool";
|
homepage = "https://github.com/zach-morris/script.module.archive_tool";
|
||||||
description = "Set of common python functions to work with the Kodi archive virtual file system (vfs) binary addons";
|
description = "Set of common python functions to work with the Kodi archive virtual file system (vfs) binary addons";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/razzeee/script.module.arrow";
|
homepage = "https://github.com/razzeee/script.module.arrow";
|
||||||
description = "Better dates & times for Python";
|
description = "Better dates & times for Python";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/thomas-ernest/plugin.video.arteplussept";
|
homepage = "https://github.com/thomas-ernest/plugin.video.arteplussept";
|
||||||
description = "Watch videos available on Arte+7";
|
description = "Watch videos available on Arte+7";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://certifi.io";
|
homepage = "https://certifi.io";
|
||||||
description = "Python package for providing Mozilla's CA Bundle";
|
description = "Python package for providing Mozilla's CA Bundle";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/Freso/script.module.chardet";
|
homepage = "https://github.com/Freso/script.module.chardet";
|
||||||
description = "Universal encoding detector";
|
description = "Universal encoding detector";
|
||||||
license = licenses.lgpl2Only;
|
license = licenses.lgpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,7 +36,7 @@ let
|
||||||
homepage = "https://github.com/kodi-game/controller-topology-project";
|
homepage = "https://github.com/kodi-game/controller-topology-project";
|
||||||
description = "Models how controllers connect to and map to each other for all gaming history";
|
description = "Models how controllers connect to and map to each other for all gaming history";
|
||||||
license = with licenses; [ odbl ];
|
license = with licenses; [ odbl ];
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
|
@ -35,6 +35,6 @@ buildKodiAddon rec {
|
||||||
asl20
|
asl20
|
||||||
bsd3
|
bsd3
|
||||||
];
|
];
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/tiran/defusedxml";
|
homepage = "https://github.com/tiran/defusedxml";
|
||||||
description = "defusing XML bombs and other exploits";
|
description = "defusing XML bombs and other exploits";
|
||||||
license = licenses.psfl;
|
license = licenses.psfl;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/jaylinski/kodi-addon-formula1";
|
homepage = "https://github.com/jaylinski/kodi-addon-formula1";
|
||||||
description = "Videos from the Formula 1 website";
|
description = "Videos from the Formula 1 website";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://python-future.org";
|
homepage = "https://python-future.org";
|
||||||
description = "Missing compatibility layer between Python 2 and Python 3";
|
description = "Missing compatibility layer between Python 2 and Python 3";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/zach-morris/plugin.program.iagl";
|
homepage = "https://github.com/zach-morris/plugin.program.iagl";
|
||||||
description = "Launch Games from the Internet using Kodi";
|
description = "Launch Games from the Internet using Kodi";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/Freso/script.module.idna";
|
homepage = "https://github.com/Freso/script.module.idna";
|
||||||
description = "Internationalized Domain Names for Python";
|
description = "Internationalized Domain Names for Python";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/jurialmunkey/script.module.infotagger";
|
homepage = "https://github.com/jurialmunkey/script.module.infotagger";
|
||||||
description = "Wrapper for new Nexus InfoTagVideo ListItem methods to maintain backwards compatibility";
|
description = "Wrapper for new Nexus InfoTagVideo ListItem methods to maintain backwards compatibility";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,6 +64,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Kodi inputstream addon for several manifest types";
|
description = "Kodi inputstream addon for several manifest types";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "InputStream Client for streams that can be opened by either FFmpeg's libavformat or Kodi's cURL";
|
description = "InputStream Client for streams that can be opened by either FFmpeg's libavformat or Kodi's cURL";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Client for RTMP streams";
|
description = "Client for RTMP streams";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/emilsvennesson/script.module.inputstreamhelper";
|
homepage = "https://github.com/emilsvennesson/script.module.inputstreamhelper";
|
||||||
description = "Simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback";
|
description = "Simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/petterreinholdtsen/kodi-invidious-plugin";
|
homepage = "https://github.com/petterreinholdtsen/kodi-invidious-plugin";
|
||||||
description = "Privacy-friendly way of watching YouTube content";
|
description = "Privacy-friendly way of watching YouTube content";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,6 +62,6 @@ buildKodiAddon rec {
|
||||||
easily switch between multiple user accounts at will.
|
easily switch between multiple user accounts at will.
|
||||||
'';
|
'';
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,6 +52,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://jellyfin.org/";
|
homepage = "https://jellyfin.org/";
|
||||||
description = "Whole new way to manage and view your media library";
|
description = "Whole new way to manage and view your media library";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Binary addon for raw joystick input";
|
description = "Binary addon for raw joystick input";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/jurialmunkey/script.module.jurialmunkey/tree/main";
|
homepage = "https://github.com/jurialmunkey/script.module.jurialmunkey/tree/main";
|
||||||
description = "Common code required by TMDbHelper and other related jurialmunkey add-ons";
|
description = "Common code required by TMDbHelper and other related jurialmunkey add-ons";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/tamland/xbmc-keymap-editor";
|
homepage = "https://github.com/tamland/xbmc-keymap-editor";
|
||||||
description = "GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi";
|
description = "GUI for configuring mappings for remotes, keyboard and other inputs supported by Kodi";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/romanvm/kodi.six";
|
homepage = "https://github.com/romanvm/kodi.six";
|
||||||
description = "Wrappers around Kodi Python API for seamless Python 2/3 compatibility";
|
description = "Wrappers around Kodi Python API for seamless Python 2/3 compatibility";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ buildKodiBinaryAddon rec {
|
||||||
description = "2048 GameClient for Kodi";
|
description = "2048 GameClient for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
maintainers = with maintainers; teams.kodi.members ++ [ kazenyuk ];
|
maintainers = with maintainers; [ kazenyuk ];
|
||||||
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi";
|
description = "Sinclair - ZX Spectrum (Fuse) GameClient for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = with maintainers; teams.kodi.members ++ [ kazenyuk ];
|
maintainers = with maintainers; [ kazenyuk ];
|
||||||
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Genesis Plus GX GameClient for Kodi";
|
description = "Genesis Plus GX GameClient for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Game and Watch for Kodi";
|
description = "Game and Watch for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "mGBA for Kodi";
|
description = "mGBA for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Nintendo - NES / Famicom (Nestopia UE) GameClient for Kodi";
|
description = "Nintendo - NES / Famicom (Nestopia UE) GameClient for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Snes9X GameClient for Kodi";
|
description = "Snes9X GameClient for Kodi";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Libretro wrapper for Kodi's Game API";
|
description = "Libretro wrapper for Kodi's Game API";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/voc/plugin.video.media-ccc-de/";
|
homepage = "https://github.com/voc/plugin.video.media-ccc-de/";
|
||||||
description = "media.ccc.de for Kodi";
|
description = "media.ccc.de for Kodi";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/mediathekview/plugin.video.mediathekview";
|
homepage = "https://github.com/mediathekview/plugin.video.mediathekview";
|
||||||
description = "Access media libraries of German speaking broadcasting stations";
|
description = "Access media libraries of German speaking broadcasting stations";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "http://dev.mysql.com/doc/connector-python/en/index.html";
|
homepage = "http://dev.mysql.com/doc/connector-python/en/index.html";
|
||||||
description = "MySQL Connector/Python";
|
description = "MySQL Connector/Python";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
|
homepage = "https://github.com/CastagnaIT/plugin.video.netflix";
|
||||||
description = "Netflix VOD Services Add-on";
|
description = "Netflix VOD Services Add-on";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members ++ [ maintainers.pks ];
|
maintainers = [ maintainers.pks ];
|
||||||
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/s0faking/plugin.video.orftvthek";
|
homepage = "https://github.com/s0faking/plugin.video.orftvthek";
|
||||||
description = "Addon for accessing the Austrian ORF ON streaming service";
|
description = "Addon for accessing the Austrian ORF ON streaming service";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://forum.kodi.tv/showthread.php?tid=187421";
|
homepage = "https://forum.kodi.tv/showthread.php?tid=187421";
|
||||||
description = "Comic book reader";
|
description = "Comic book reader";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/anxdpanic/script.common.plugin.cache";
|
homepage = "https://github.com/anxdpanic/script.common.plugin.cache";
|
||||||
description = "Common plugin cache";
|
description = "Common plugin cache";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Kodi's HDHomeRun PVR client addon";
|
description = "Kodi's HDHomeRun PVR client addon";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Kodi's Tvheadend HTSP client addon";
|
description = "Kodi's Tvheadend HTSP client addon";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Kodi's IPTV Simple client addon";
|
description = "Kodi's IPTV Simple client addon";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "Kodi's VDR VNSI PVR client addon";
|
description = "Kodi's VDR VNSI PVR client addon";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/alxndr42/script.radioparadise";
|
homepage = "https://github.com/alxndr42/script.radioparadise";
|
||||||
description = "Radio Paradise addon for Kodi";
|
description = "Radio Paradise addon for Kodi";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/maxbambi/plugin.video.raitv/";
|
homepage = "https://github.com/maxbambi/plugin.video.raitv/";
|
||||||
description = "Live radio and TV channels, latest 7 days of programming, broadcast archive, news";
|
description = "Live radio and TV channels, latest 7 days of programming, broadcast archive, news";
|
||||||
license = licenses.gpl3Only;
|
license = licenses.gpl3Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/reclosedev/requests-cache";
|
homepage = "https://github.com/reclosedev/requests-cache";
|
||||||
description = "Persistent cache for requests library";
|
description = "Persistent cache for requests library";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,6 @@ buildKodiAddon rec {
|
||||||
homepage = "http://python-requests.org";
|
homepage = "http://python-requests.org";
|
||||||
description = "Python HTTP for Humans";
|
description = "Python HTTP for Humans";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/jurialmunkey/resource.font.robotocjksc";
|
homepage = "https://github.com/jurialmunkey/resource.font.robotocjksc";
|
||||||
description = "Roboto CJKSC fonts";
|
description = "Roboto CJKSC fonts";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/tamland/kodi-plugin-routing";
|
homepage = "https://github.com/tamland/kodi-plugin-routing";
|
||||||
description = "Routing module for kodi plugins";
|
description = "Routing module for kodi plugins";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,6 +44,7 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/firsttris/plugin.video.sendtokodi";
|
homepage = "https://github.com/firsttris/plugin.video.sendtokodi";
|
||||||
description = "Plays various stream sites on Kodi using yt-dlp";
|
description = "Plays various stream sites on Kodi using yt-dlp";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members ++ [ maintainers.pks ];
|
maintainers = [ maintainers.pks ];
|
||||||
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/ruuk/script.module.addon.signals";
|
homepage = "https://github.com/ruuk/script.module.addon.signals";
|
||||||
description = "Provides signal/slot mechanism for inter-addon communication";
|
description = "Provides signal/slot mechanism for inter-addon communication";
|
||||||
license = licenses.lgpl21Only;
|
license = licenses.lgpl21Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/kodi-community-addons/script.module.simplecache";
|
homepage = "https://github.com/kodi-community-addons/script.module.simplecache";
|
||||||
description = "A simple object cache for Kodi addons";
|
description = "A simple object cache for Kodi addons";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/simplejson/simplejson";
|
homepage = "https://github.com/simplejson/simplejson";
|
||||||
description = "Simple, fast, extensible JSON encoder/decoder for Python";
|
description = "Simple, fast, extensible JSON encoder/decoder for Python";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://pypi.org/project/six/";
|
homepage = "https://pypi.org/project/six/";
|
||||||
description = "Python 2 and 3 compatibility utilities";
|
description = "Python 2 and 3 compatibility utilities";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://www.github.com/nixxo/plugin.video.skyvideoitalia";
|
homepage = "https://www.github.com/nixxo/plugin.video.skyvideoitalia";
|
||||||
description = "Show video content from the website of Sky Italia (video.sky.it). News, sport, entertainment and much more";
|
description = "Show video content from the website of Sky Italia (video.sky.it). News, sport, entertainment and much more";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/Soma-FM-Kodi-Add-On/plugin.audio.somafm";
|
homepage = "https://github.com/Soma-FM-Kodi-Add-On/plugin.audio.somafm";
|
||||||
description = "SomaFM addon for Kodi";
|
description = "SomaFM addon for Kodi";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/siku2/script.service.sponsorblock";
|
homepage = "https://github.com/siku2/script.service.sponsorblock";
|
||||||
description = "Port of SponsorBlock for Invidious and YouTube Plugin";
|
description = "Port of SponsorBlock for Invidious and YouTube Plugin";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,6 @@ buildKodiBinaryAddon rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Binary addon for steam controller";
|
description = "Binary addon for steam controller";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,6 @@ buildKodiAddon {
|
||||||
configured via the addon.
|
configured via the addon.
|
||||||
'';
|
'';
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,6 +29,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/aanderse/plugin.program.steam.library";
|
homepage = "https://github.com/aanderse/plugin.program.steam.library";
|
||||||
description = "View your entire Steam library right from Kodi";
|
description = "View your entire Steam library right from Kodi";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ buildKodiAddon rec {
|
||||||
'';
|
'';
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
|
|
||||||
broken = true; # no release for kodi 21
|
broken = true; # no release for kodi 21
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,6 +25,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/jurialmunkey/script.texturemaker/tree/main";
|
homepage = "https://github.com/jurialmunkey/script.texturemaker/tree/main";
|
||||||
description = "Texture Maker helps skinners build gradient based textures";
|
description = "Texture Maker helps skinners build gradient based textures";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,6 +35,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/Razzeee/script.module.trakt";
|
homepage = "https://github.com/Razzeee/script.module.trakt";
|
||||||
description = "Python trakt.py library packed for Kodi";
|
description = "Python trakt.py library packed for Kodi";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://kodi.wiki/view/Add-on:Trakt";
|
homepage = "https://kodi.wiki/view/Add-on:Trakt";
|
||||||
description = "Trakt.tv movie and TV show scrobbler for Kodi";
|
description = "Trakt.tv movie and TV show scrobbler for Kodi";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/python/typing/tree/master/typing_extensions";
|
homepage = "https://github.com/python/typing/tree/master/typing_extensions";
|
||||||
description = "Python typing extensions";
|
description = "Python typing extensions";
|
||||||
license = licenses.psfl;
|
license = licenses.psfl;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://github.com/im85288/service.upnext";
|
homepage = "https://github.com/im85288/service.upnext";
|
||||||
description = "Up Next - Proposes to play the next episode automatically";
|
description = "Up Next - Proposes to play the next episode automatically";
|
||||||
license = licenses.gpl2Only;
|
license = licenses.gpl2Only;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,6 @@ buildKodiAddon rec {
|
||||||
homepage = "https://urllib3.readthedocs.io/en/latest/";
|
homepage = "https://urllib3.readthedocs.io/en/latest/";
|
||||||
description = "HTTP library with thread-safe connection pooling, file post, and more";
|
description = "HTTP library with thread-safe connection pooling, file post, and more";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "LibArchive Virtual Filesystem add-on for Kodi";
|
description = "LibArchive Virtual Filesystem add-on for Kodi";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,6 @@ buildKodiBinaryAddon rec {
|
||||||
description = "RAR archive Virtual Filesystem add-on for Kodi";
|
description = "RAR archive Virtual Filesystem add-on for Kodi";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = teams.kodi.members;
|
teams = [ teams.kodi ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue