X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=virtual%2Fmodules%2Fwebsites%2Ftools%2Fcloud%2Fnextcloud.nix;fp=virtual%2Fmodules%2Fwebsites%2Ftools%2Fcloud%2Fnextcloud.nix;h=b9c8d04d8a6e0d1a18df95c79d93cfd6de5c46c4;hb=a5365ec3d924a91abdd80c4f58d2158472788de9;hp=5849774f8afe9137583211166cc969173ea9b39e;hpb=7fff3ab2628284e7f53bee04401621f4c0963b4f;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/virtual/modules/websites/tools/cloud/nextcloud.nix b/virtual/modules/websites/tools/cloud/nextcloud.nix index 5849774..b9c8d04 100644 --- a/virtual/modules/websites/tools/cloud/nextcloud.nix +++ b/virtual/modules/websites/tools/cloud/nextcloud.nix @@ -1,8 +1,6 @@ { stdenv, fetchurl, checkEnv, writeText, lib, phpPackages, php }: let nextcloud = let - # FIXME: initial sync - # FIXME: backup buildApp = { appName, version, url, sha256, installPhase ? "mkdir -p $out && cp -R . $out/" }: stdenv.mkDerivation rec { name = "nextcloud-app-${appName}-${version}"; @@ -12,11 +10,6 @@ let src = fetchurl { inherit url sha256; }; }; apps = { - # FIXME: nextcloud complains that he cannot write into config - # directory when an app needs upgrade - # /!\ Attention, just changing the version number is not - # sufficient when the downloaded file doesn’t contain the version - # number in it, sha256 needs to be recomputed audioplayer = buildApp rec { appName = "audioplayer"; version = "2.5.0";