owncloud: 7.0.5 -> 7.0.10 +

Commit changes default version to 7.0.10, 7.0.5 version is kept for
people reluctant to update. Needed info has also been added for
versions 8.0, 8.1 and 8.2 only the latest minor version of each
major version is included.
This commit is contained in:
Augustin Borsu 2015-11-04 16:04:02 +00:00 committed by Matej Cotman
parent e08ffc472c
commit 16fd6c1cf0
3 changed files with 62 additions and 20 deletions

View File

@ -573,7 +573,11 @@ rec {
${pkgs.sudo}/bin/sudo -u postgres ${pkgs.postgresql}/bin/psql -h "/tmp" -U postgres -d ${config.dbName} -Atw -c "$QUERY" || true
fi
${php}/bin/php ${pkgs.owncloud}/occ upgrade || true
if [ -e ${pkgs.owncloud}/config/ca-bundle.crt ]; then
cp -f ${pkgs.owncloud}/config/ca-bundle.crt ${config.dataDir}/config/
fi
${php}/bin/php ${pkgs.owncloud}/occ upgrade >> ${config.dataDir}/upgrade.log || true
chown wwwrun:wwwrun ${config.dataDir}/owncloud.log || true

View File

@ -1,28 +1,59 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name= "owncloud-${version}";
version = "7.0.5";
let
common = { versiona, sha256 } @ args: stdenv.mkDerivation (rec {
src = fetchurl {
url = "https://download.owncloud.org/community/${name}.tar.bz2";
name= "owncloud-${version}";
version= versiona;
src = fetchurl {
url = "https://download.owncloud.org/community/${name}.tar.bz2";
inherit sha256;
};
installPhase =
''
mkdir -p $out
find . -maxdepth 1 -execdir cp -r '{}' $out \;
substituteInPlace $out/lib/base.php \
--replace 'OC_Config::$object = new \OC\Config(self::$configDir);' \
'self::$configDir = getenv("OC_CONFIG_PATH"); OC_Config::$object = new \OC\Config(self::$configDir);'
'';
meta = {
description = "An enterprise file sharing solution for online collaboration and storage";
homepage = https://owncloud.org;
maintainers = with stdenv.lib.maintainers; [ matejc ];
license = stdenv.lib.licenses.agpl3Plus;
};
});
in {
owncloud705 = common {
versiona = "7.0.5";
sha256 = "1j21b7ljvbhni9l0b1cpzlhsjy36scyas1l1j222mqdg2srfsi9y";
};
installPhase =
''
mkdir -p $out
find . -maxdepth 1 -execdir cp -r '{}' $out \;
owncloud70 = common {
versiona = "7.0.10";
sha256 = "7e77f27137f37a721a8827b0436a9e71c100406d9745c4251c37c14bcaf31d0b";
};
substituteInPlace $out/lib/base.php \
--replace 'OC_Config::$object = new \OC\Config(self::$configDir);' \
'self::$configDir = getenv("OC_CONFIG_PATH"); OC_Config::$object = new \OC\Config(self::$configDir);'
'';
owncloud80 = common {
versiona = "8.0.9";
sha256 = "0c1f915f4123dbe07d564cf0172930568690ab5257d2fca4fec4ec515858bef1";
};
meta = {
description = "An enterprise file sharing solution for online collaboration and storage";
homepage = https://owncloud.org;
maintainers = with stdenv.lib.maintainers; [ matejc ];
license = stdenv.lib.licenses.agpl3Plus;
owncloud81 = common {
versiona = "8.1.4";
sha256 = "e0f4bf0c85821fc1b6e7f6268080ad3ca3e98c41baa68a9d616809d74a77312d";
};
owncloud82 = common {
versiona = "8.2.0";
sha256 = "fcfe99cf1c3aa06ff369e5b1a602147c08dd977af11800fe06c6a661fa5f770c";
};
}

View File

@ -2573,7 +2573,14 @@ let
otpw = callPackage ../os-specific/linux/otpw { };
owncloud = callPackage ../servers/owncloud { };
owncloud = owncloud70;
inherit (callPackages ../servers/owncloud { })
owncloud705
owncloud70
owncloud80
owncloud81
owncloud82;
owncloudclient = callPackage ../applications/networking/owncloud-client { };