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