nixpkgs/pkgs/servers/nextcloud/packages
Maximilian Bosch 519c64b1be
nextcloudPackages*: pin maps to stable 1.1.0
No idea what this gibberish disguised as tag is, but nc4nix doesn't seem
to cope well with it. For now, let's pin `maps` to the stable 1.1 release (as
it's the case for nextcloud27 already) since 1.1 is supported for all of
v25 to v27[1], so this seems reasonable to do.

[1] https://github.com/nextcloud/maps/blob/v1.1.0/appinfo/info.xml#L36
2023-08-14 23:43:20 +02:00
..
25.json nextcloudPackages*: pin maps to stable 1.1.0 2023-08-14 23:43:20 +02:00
26.json nextcloudPackages*: pin maps to stable 1.1.0 2023-08-14 23:43:20 +02:00
27.json nextcloudPackages*: update 2023-08-14 15:30:59 +02:00
default.nix
generate.sh nextcloudPackages: update 2023-06-13 14:45:16 -07:00
nc-versions.nix nextcloudPackages: update 2023-03-28 18:43:27 -07:00
nextcloud-apps.json nextcloud-apps.json: adds memories 2023-07-18 00:09:58 +02:00
README.md

= Adding apps =

To extend the nextcloudPackages set, add a new line to the corresponding json file with the id of the app:

  • nextcloud-apps.json for apps

The app must be available in the official Nextcloud app store. https://apps.nextcloud.com. The id corresponds to the last part in the app url, for example breezedark for the app with the url https://apps.nextcloud.com/apps/breezedark.

To regenerate the nixpkgs nextcloudPackages set, run:

./generate.sh

After that you can commit and submit the changes.

= Usage with the Nextcloud module =

The apps will be available in the namespace nextcloud25Packages.apps. Using it together with the Nextcloud module could look like this:

services.nextcloud = {
  enable = true;
  package = pkgs.nextcloud25;
  hostName = "localhost";
  config.adminpassFile = "${pkgs.writeText "adminpass" "hunter2"}";
  extraApps = with pkgs.nextcloud25Packages.apps; [
    mail
    calendar
    contacts
  ];
  extraAppsEnable = true;
};

Adapt the version number in the Nextcloud package and nextcloudPackages set according to the Nextcloud version you wish to use. There are several supported stable Nextcloud versions available in the repository.