2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2016-09-21 16:55:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-09 00:51:05 +01:00
|
|
|
name = "nextcloud-${version}";
|
2019-07-14 21:56:39 +01:00
|
|
|
version = "16.0.3";
|
2016-09-21 16:55:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
2019-07-14 21:56:39 +01:00
|
|
|
sha256 = "1ww1517i05gaf71szx0qpdc87aczllcb39cvc8c26dm18z76hgx1";
|
2016-09-21 16:55:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/
|
2016-10-19 18:42:09 +01:00
|
|
|
cp -R . $out/
|
2016-09-21 16:55:38 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Sharing solution for files, calendars, contacts and more";
|
|
|
|
homepage = https://nextcloud.com;
|
2018-09-09 00:51:05 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux bachp globin fpletz ];
|
2016-09-21 16:55:38 +01:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
};
|
|
|
|
}
|