Unverified Commit 2efa2594 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

nextcloud31Packages.apps.recognize: drop nextcloud 28

it was removed from nixpkgs
parent b91fc4fb
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -26,13 +26,6 @@ let
      appHash = "sha256-qR4SrTHFAc4YWiZAsL94XcH4VZqYtkRLa0y+NdiFZus=";
      modelHash = "sha256-M/j5wVOBLR7xMVJQWDUWAzLajRUBYEzHSNBsRSBUgfM=";
    };
    "28" = {
      # Once this version is no longer supported, we can remove the getAppValue replacements below
      # The getAppValueString stuff will need to remain
      version = "6.1.0";
      appHash = "sha256-225r2JnDOoURvLmzpmHp/QL6GDx9124/YTywbxH3/rk=";
      modelHash = "sha256-4mhQM/ajpwjqTb8jSbEIdtSRrWZEOaMZQXAwcfSRQ/M=";
    };
  };
  currentVersionInfo = latestVersionForNc.${ncVersion};
in
@@ -83,9 +76,7 @@ stdenv.mkDerivation rec {
    substituteInPlace recognize/lib/**/*.php \
      --replace-quiet "\$this->settingsService->getSetting('node_binary')" "'${lib.getExe nodejs}'" \
      --replace-quiet "\$this->config->getAppValueString('node_binary', '""')" "'${lib.getExe nodejs}'" \
      --replace-quiet "\$this->config->getAppValueString('node_binary')" "'${lib.getExe nodejs}'" \
      --replace-quiet "\$this->config->getAppValue('node_binary', '""')" "'${lib.getExe nodejs}'" \
      --replace-quiet "\$this->config->getAppValue('node_binary')" "'${lib.getExe nodejs}'"
      --replace-quiet "\$this->config->getAppValueString('node_binary')" "'${lib.getExe nodejs}'"
    test "$(grep "get[a-zA-Z]*('node_binary'" recognize/lib/**/*.php | wc -l)" -eq 0