2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2016-09-21 16:55:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nextcloud";
|
2019-11-25 14:06:04 +00:00
|
|
|
version = "17.0.1";
|
2016-09-21 16:55:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://download.nextcloud.com/server/releases/${pname}-${version}.tar.bz2";
|
2019-11-25 14:06:04 +00:00
|
|
|
sha256 = "0jrbpzc4xf52zfncn6w2m0ch2fszqqz3ny0jq1cw7fy24vjhwgkp";
|
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;
|
|
|
|
};
|
|
|
|
}
|