nixpkgs/pkgs/servers/nextcloud/default.nix

31 lines
904 B
Nix
Raw Normal View History

2018-09-27 22:59:36 +00:00
{ stdenv, fetchurl, fetchpatch }:
2016-09-21 15:55:38 +00:00
stdenv.mkDerivation rec {
name = "nextcloud-${version}";
2018-12-05 17:13:08 +00:00
version = "14.0.4";
2016-09-21 15:55:38 +00:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2018-12-05 17:13:08 +00:00
sha256 = "1s20dds4sci3g981ql8kp9d1ynss5sa2y3dsbzqx4jv9f5dd2pag";
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/
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;
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;
};
}