2018-09-27 22:59:36 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch }:
|
2016-09-21 15:55:38 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-08 23:51:05 +00:00
|
|
|
name = "nextcloud-${version}";
|
|
|
|
version = "14.0.1";
|
2016-09-21 15:55:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
|
2018-09-08 23:51:05 +00:00
|
|
|
sha256 = "14ymc6fr91735yyc2gqh7c89mbbwsgamhhysf6crp9kp27l83z5a";
|
2016-09-21 15:55:38 +00:00
|
|
|
};
|
|
|
|
|
2018-09-27 22:59:36 +00:00
|
|
|
patches = [ (fetchpatch {
|
|
|
|
name = "Mailer-discover-sendmail-path-instead-of-hardcoding-.patch";
|
|
|
|
url = https://github.com/nextcloud/server/pull/11404.patch;
|
|
|
|
sha256 = "1h0cqnfwn735vqrm3yh9nh6a7h6srr9h29p13vywd6rqbcndqjjd";
|
|
|
|
}) ];
|
|
|
|
|
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;
|
2018-09-08 23:51:05 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ schneefux bachp globin fpletz ];
|
2016-09-21 15:55:38 +00:00
|
|
|
license = stdenv.lib.licenses.agpl3Plus;
|
|
|
|
platforms = with stdenv.lib.platforms; unix;
|
|
|
|
};
|
|
|
|
}
|