2018-09-28 00:59:36 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2016-09-21 17:55:38 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-09 01:51:05 +02:00
|
|
|
name = "nextcloud-${version}";
|
2019-01-12 22:13:23 +01:00
|
|
|
version = "15.0.2";
|
2016-09-21 17:55:38 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
2019-01-12 22:13:23 +01:00
|
|
|
sha256 = "1shgr81hhxr2k45hqlx06qhyayhbqdi0ndvpcyzdv54rwcrwrx61";
|
2016-09-21 17:55:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/
|
2016-10-19 19:42:09 +02:00
|
|
|
cp -R . $out/
|
2016-09-21 17:55:38 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
|
|
homepage = https://nextcloud.com;
|
2018-09-09 01:51:05 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux bachp globin fpletz ];
|
2016-09-21 17:55:38 +02:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
};
|
|
|
|
}
|