Merge: nixos/nextcloud: add maintainer team, update docs about maintainership of apps (#393069)
This commit is contained in:
commit
f20b220e17
@ -19390,6 +19390,11 @@
|
|||||||
githubId = 15833376;
|
githubId = 15833376;
|
||||||
name = "Pierre ROux";
|
name = "Pierre ROux";
|
||||||
};
|
};
|
||||||
|
provokateurin = {
|
||||||
|
name = "Kate Döen";
|
||||||
|
github = "provokateurin";
|
||||||
|
githubId = 26026535;
|
||||||
|
};
|
||||||
prrlvr = {
|
prrlvr = {
|
||||||
email = "po@prrlvr.fr";
|
email = "po@prrlvr.fr";
|
||||||
github = "prrlvr";
|
github = "prrlvr";
|
||||||
|
@ -864,6 +864,19 @@ with lib.maintainers;
|
|||||||
shortName = "Vim/Neovim";
|
shortName = "Vim/Neovim";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nextcloud = {
|
||||||
|
members = [
|
||||||
|
bachp
|
||||||
|
britter
|
||||||
|
dotlambda
|
||||||
|
ma27
|
||||||
|
provokateurin
|
||||||
|
];
|
||||||
|
scope = "Maintain Nextcloud, its tests and the integration of applications.";
|
||||||
|
shortName = "Nextcloud";
|
||||||
|
enableFeatureFreezePing = true;
|
||||||
|
};
|
||||||
|
|
||||||
ngi = {
|
ngi = {
|
||||||
members = [
|
members = [
|
||||||
eljamm
|
eljamm
|
||||||
|
@ -390,6 +390,8 @@
|
|||||||
|
|
||||||
- hddfancontrol has been updated to major release 2. See the [migration guide](https://github.com/desbma/hddfancontrol/tree/master?tab=readme-ov-file#migrating-from-v1x), as there are breaking changes.
|
- hddfancontrol has been updated to major release 2. See the [migration guide](https://github.com/desbma/hddfancontrol/tree/master?tab=readme-ov-file#migrating-from-v1x), as there are breaking changes.
|
||||||
|
|
||||||
|
- `nextcloud-news-updater` is unmaintained and was removed from nixpkgs.
|
||||||
|
|
||||||
- `services.cloudflared` now uses a dynamic user, and its `user` and `group` options have been removed. If the user or group is still necessary, they can be created manually.
|
- `services.cloudflared` now uses a dynamic user, and its `user` and `group` options have been removed. If the user or group is still necessary, they can be created manually.
|
||||||
|
|
||||||
- The Home Assistant module has new options {option}`services.home-assistant.blueprints.automation`, `services.home-assistant.blueprints.script`, and {option}`services.home-assistant.blueprints.template` that allow for the declarative installation of [blueprints](https://www.home-assistant.io/docs/blueprint/) into the appropriate configuration directories.
|
- The Home Assistant module has new options {option}`services.home-assistant.blueprints.automation`, `services.home-assistant.blueprints.script`, and {option}`services.home-assistant.blueprints.template` that allow for the declarative installation of [blueprints](https://www.home-assistant.io/docs/blueprint/) into the appropriate configuration directories.
|
||||||
|
@ -241,7 +241,20 @@ This can be configured with the [](#opt-services.nextcloud.phpExtraExtensions) s
|
|||||||
|
|
||||||
Alternatively, extra apps can also be declared with the [](#opt-services.nextcloud.extraApps) setting.
|
Alternatively, extra apps can also be declared with the [](#opt-services.nextcloud.extraApps) setting.
|
||||||
When using this setting, apps can no longer be managed statefully because this can lead to Nextcloud updating apps
|
When using this setting, apps can no longer be managed statefully because this can lead to Nextcloud updating apps
|
||||||
that are managed by Nix. If you want automatic updates it is recommended that you use web interface to install apps.
|
that are managed by Nix:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
{ config, pkgs, ... }: {
|
||||||
|
services.nextcloud.extraApps = with config.services.nextcloud.package.packages.apps; [
|
||||||
|
inherit user_oidc calendar contacts;
|
||||||
|
];
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Keep in mind that this is essentially a mirror of the apps from the appstore, but managed in
|
||||||
|
nixpkgs. This is by no means a curated list of apps that receive special testing on each update.
|
||||||
|
|
||||||
|
If you want automatic updates it is recommended that you use web interface to install apps.
|
||||||
|
|
||||||
## Known warnings {#module-services-nextcloud-known-warnings}
|
## Known warnings {#module-services-nextcloud-known-warnings}
|
||||||
|
|
||||||
|
@ -1363,4 +1363,5 @@ in {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
meta.doc = ./nextcloud.md;
|
meta.doc = ./nextcloud.md;
|
||||||
|
meta.maintainers = teams.nextcloud;
|
||||||
}
|
}
|
||||||
|
@ -11,12 +11,8 @@ runTest (
|
|||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
meta = with lib.maintainers; {
|
meta = {
|
||||||
maintainers = [
|
maintainers = lib.teams.nextcloud.members;
|
||||||
globin
|
|
||||||
eqyiel
|
|
||||||
ma27
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = [ testBase ];
|
imports = [ testBase ];
|
||||||
|
@ -14,12 +14,7 @@ runTest (
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
meta = with lib.maintainers; {
|
meta.maintainers = lib.teams.nextcloud.members;
|
||||||
maintainers = [
|
|
||||||
eqyiel
|
|
||||||
ma27
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
imports = [ testBase ];
|
imports = [ testBase ];
|
||||||
|
|
||||||
|
@ -11,9 +11,8 @@ runTest (
|
|||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
meta = with lib.maintainers; {
|
|
||||||
maintainers = [ eqyiel ];
|
meta.maintainers = lib.teams.nextcloud.members;
|
||||||
};
|
|
||||||
|
|
||||||
imports = [ testBase ];
|
imports = [ testBase ];
|
||||||
|
|
||||||
|
@ -20,12 +20,7 @@ runTest (
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
meta = with lib.maintainers; {
|
meta.maintainers = lib.teams.nextcloud.members;
|
||||||
maintainers = [
|
|
||||||
onny
|
|
||||||
ma27
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
imports = [ testBase ];
|
imports = [ testBase ];
|
||||||
|
|
||||||
|
@ -11,12 +11,7 @@ runTest (
|
|||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
{
|
{
|
||||||
inherit name;
|
inherit name;
|
||||||
meta = with lib.maintainers; {
|
meta.maintainers = lib.teams.nextcloud.members;
|
||||||
maintainers = [
|
|
||||||
eqyiel
|
|
||||||
ma27
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
imports = [ testBase ];
|
imports = [ testBase ];
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
patches ? [ ],
|
patches ? [ ],
|
||||||
description ? null,
|
description ? null,
|
||||||
homepage ? null,
|
homepage ? null,
|
||||||
|
maintainers ? [ ],
|
||||||
unpack ? false, # whether to use fetchzip rather than fetchurl
|
unpack ? false, # whether to use fetchzip rather than fetchurl
|
||||||
}:
|
}:
|
||||||
applyPatches (
|
applyPatches (
|
||||||
@ -26,7 +27,7 @@ applyPatches (
|
|||||||
{
|
{
|
||||||
license = lib.licenses.${license};
|
license = lib.licenses.${license};
|
||||||
longDescription = description;
|
longDescription = description;
|
||||||
inherit homepage;
|
inherit homepage maintainers;
|
||||||
}
|
}
|
||||||
// lib.optionalAttrs (description != null) {
|
// lib.optionalAttrs (description != null) {
|
||||||
longDescription = description;
|
longDescription = description;
|
||||||
|
@ -44,13 +44,7 @@ let
|
|||||||
changelog = "https://nextcloud.com/changelog/#${lib.replaceStrings [ "." ] [ "-" ] version}";
|
changelog = "https://nextcloud.com/changelog/#${lib.replaceStrings [ "." ] [ "-" ] version}";
|
||||||
description = "Sharing solution for files, calendars, contacts and more";
|
description = "Sharing solution for files, calendars, contacts and more";
|
||||||
homepage = "https://nextcloud.com";
|
homepage = "https://nextcloud.com";
|
||||||
maintainers = with lib.maintainers; [
|
maintainers = lib.teams.nextcloud.members;
|
||||||
schneefux
|
|
||||||
bachp
|
|
||||||
globin
|
|
||||||
ma27
|
|
||||||
britter
|
|
||||||
];
|
|
||||||
license = lib.licenses.agpl3Plus;
|
license = lib.licenses.agpl3Plus;
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
knownVulnerabilities =
|
knownVulnerabilities =
|
||||||
|
@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
fetchurl,
|
|
||||||
python3Packages,
|
|
||||||
php,
|
|
||||||
}:
|
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
|
||||||
pname = "nextcloud-news-updater";
|
|
||||||
version = "11.0.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://pypi/n/nextcloud_news_updater/nextcloud_news_updater-${version}.tar.gz";
|
|
||||||
sha256 = "bc2055c16f0dbf610b7e17650508a18fa5a1de652ecdf69c5d4073c97376e9cf";
|
|
||||||
};
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ php ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Fast parallel feed updater for the Nextcloud news app";
|
|
||||||
mainProgram = "nextcloud-news-updater";
|
|
||||||
homepage = "https://github.com/nextcloud/news-updater";
|
|
||||||
license = lib.licenses.gpl3;
|
|
||||||
maintainers = with lib.maintainers; [ schneefux ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -32,6 +32,7 @@ let
|
|||||||
appName = pname;
|
appName = pname;
|
||||||
appVersion = data.version;
|
appVersion = data.version;
|
||||||
license = appBaseDefs.${pname};
|
license = appBaseDefs.${pname};
|
||||||
|
maintainers = lib.teams.nextcloud.members;
|
||||||
inherit (data)
|
inherit (data)
|
||||||
url
|
url
|
||||||
hash
|
hash
|
||||||
|
@ -1073,6 +1073,7 @@ mapAliases {
|
|||||||
first on 24.05 because Nextcloud doesn't support upgrades across multiple major versions!
|
first on 24.05 because Nextcloud doesn't support upgrades across multiple major versions!
|
||||||
''; # Added 2024-06-25
|
''; # Added 2024-06-25
|
||||||
nextcloud27Packages = throw "Nextcloud27 is EOL!"; # Added 2024-06-25
|
nextcloud27Packages = throw "Nextcloud27 is EOL!"; # Added 2024-06-25
|
||||||
|
nextcloud-news-updater = throw "nextcloud-news-updater has been removed because the project is unmaintained"; # Added 2025-03-28
|
||||||
nagiosPluginsOfficial = monitoring-plugins;
|
nagiosPluginsOfficial = monitoring-plugins;
|
||||||
neochat = makePlasma5Throw "neochat"; # added 2022-05-10
|
neochat = makePlasma5Throw "neochat"; # added 2022-05-10
|
||||||
nerdfonts = throw ''
|
nerdfonts = throw ''
|
||||||
|
@ -4139,8 +4139,6 @@ with pkgs;
|
|||||||
nextcloud30Packages = callPackage ../servers/nextcloud/packages { ncVersion = "30"; };
|
nextcloud30Packages = callPackage ../servers/nextcloud/packages { ncVersion = "30"; };
|
||||||
nextcloud31Packages = callPackage ../servers/nextcloud/packages { ncVersion = "31"; };
|
nextcloud31Packages = callPackage ../servers/nextcloud/packages { ncVersion = "31"; };
|
||||||
|
|
||||||
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
|
|
||||||
|
|
||||||
nextcloud-notify_push = callPackage ../servers/nextcloud/notify_push.nix { };
|
nextcloud-notify_push = callPackage ../servers/nextcloud/notify_push.nix { };
|
||||||
|
|
||||||
inherit (callPackages ../applications/networking/cluster/nomad { })
|
inherit (callPackages ../applications/networking/cluster/nomad { })
|
||||||
|
Loading…
Reference in New Issue
Block a user