nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
658 B
Nix
Raw Normal View History

2016-09-21 15:55:38 +00:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name= "nextcloud-${version}";
2018-06-11 21:01:47 +00:00
version = "13.0.4";
2016-09-21 15:55:38 +00:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2018-06-11 21:01:47 +00:00
sha256 = "18d514145fcddc86f48d0a5fa4a0d4b07617135a1b23107137a6ea3ed519bd54";
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;
2017-09-29 20:32:33 +00:00
maintainers = with stdenv.lib.maintainers; [ schneefux bachp ];
2016-09-21 15:55:38 +00:00
license = stdenv.lib.licenses.agpl3Plus;
platforms = with stdenv.lib.platforms; unix;
};
}