nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
661 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}";
2019-01-12 21:13:23 +00:00
version = "15.0.2";
2016-09-21 15:55:38 +00:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2019-01-12 21:13:23 +00:00
sha256 = "1shgr81hhxr2k45hqlx06qhyayhbqdi0ndvpcyzdv54rwcrwrx61";
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;
};
}