2015-01-20 18:22:37 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2015-11-04 16:04:02 +00:00
|
|
|
let
|
|
|
|
common = { versiona, sha256 } @ args: stdenv.mkDerivation (rec {
|
2015-01-20 18:22:37 +00:00
|
|
|
|
2015-11-04 16:04:02 +00:00
|
|
|
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";
|
2015-05-29 11:14:44 +00:00
|
|
|
sha256 = "1j21b7ljvbhni9l0b1cpzlhsjy36scyas1l1j222mqdg2srfsi9y";
|
2015-01-20 18:22:37 +00:00
|
|
|
};
|
|
|
|
|
2015-11-04 16:04:02 +00:00
|
|
|
owncloud70 = common {
|
2016-01-02 08:10:54 +00:00
|
|
|
versiona = "7.0.12";
|
|
|
|
sha256 = "d1a0f73f5094ec1149b50e2409b5fea0a9bebb16d663789d4b8f98fed341aa91";
|
2015-11-04 16:04:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
owncloud80 = common {
|
2016-01-02 08:10:54 +00:00
|
|
|
versiona = "8.0.10";
|
|
|
|
sha256 = "3054b997f258178b57efc526e14384829ac8ab94757191f2d03c13fcb0a3cd93";
|
2015-11-04 16:04:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
owncloud81 = common {
|
2016-01-02 08:10:54 +00:00
|
|
|
versiona = "8.1.5";
|
|
|
|
sha256 = "6d8687e40af32c5ca5adfea3fee556ed987b77ad15a1ead5d40cc87a8b76f4b4";
|
2015-11-04 16:04:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
owncloud82 = common {
|
2016-01-02 08:10:54 +00:00
|
|
|
versiona = "8.2.2";
|
|
|
|
sha256 = "d5b935f904744b8b40b310f19679702387c852498d0dc7aaeda4555a3db9ad5b";
|
2015-01-20 18:22:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|