2018-09-27 15:59:36 -07:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2016-09-21 08:55:38 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-08 16:51:05 -07:00
|
|
|
name = "nextcloud-${version}";
|
2019-03-01 16:52:44 -08:00
|
|
|
version = "15.0.5";
|
2016-09-21 08:55:38 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
2019-03-01 16:52:44 -08:00
|
|
|
sha256 = "125ra0rdgk17d8s80i54w0s58dqvjgkdpcxbczchqd3sg6dqcqa6";
|
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;
|
2018-09-08 16:51:05 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux bachp globin fpletz ];
|
2016-09-21 08:55:38 -07:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
};
|
|
|
|
}
|