Nextcloud: Difference between revisions

imported>Alicimo
Missing the license variable in fetchNextcloudApp causes the example to fail. Also expanded the given example to show the use of combining packaged apps with those additionally fetched.
imported>Alicimo
m Formatting fix
Line 49: Line 49:
   extraApps = {
   extraApps = {
     inherit (config.services.nextcloud.package.packages.apps) news contacts calendar tasks;
     inherit (config.services.nextcloud.package.packages.apps) news contacts calendar tasks;
      memories = pkgs.fetchNextcloudApp {
    memories = pkgs.fetchNextcloudApp {
         sha256 = "sha256-Xr1SRSmXo2r8yOGuoMyoXhD0oPVm/0/ISHlmNZpJYsg=";
         sha256 = "sha256-Xr1SRSmXo2r8yOGuoMyoXhD0oPVm/0/ISHlmNZpJYsg=";
         url = "https://github.com/pulsejet/memories/releases/download/v6.2.2/memories.tar.gz";
         url = "https://github.com/pulsejet/memories/releases/download/v6.2.2/memories.tar.gz";
         license = "agpl3";
         license = "agpl3";
      };
    };


   };
   };