2016-09-21 08:55:38 -07:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name= "nextcloud-${version}";
|
2017-03-18 15:44:34 -07:00
|
|
|
version = "11.0.2";
|
2016-09-21 08:55:38 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
2017-03-18 15:44:34 -07:00
|
|
|
sha256 = "0047kfl73720w7y2r7ivzj2gqg84rcfp98svq130nd0ziyfz27jx";
|
2016-09-21 08:55:38 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/
|
2016-10-19 10:42:09 -07:00
|
|
|
cp -R . $out/
|
2016-09-21 08:55:38 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
|
|
homepage = https://nextcloud.com;
|
2016-09-21 09:03:14 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux ];
|
2016-09-21 08:55:38 -07:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
};
|
|
|
|
}
|