nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
634 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2016-09-21 15:55:38 +00:00
stdenv.mkDerivation rec {
name= "nextcloud-${version}";
2018-07-26 01:08:24 +00:00
version = "13.0.5";
2016-09-21 15:55:38 +00:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2018-07-26 01:08:24 +00:00
sha256 = "1sl0kvn52m6p7rglwhgfb737y1897897hc5g2fcbg6i594ld6451";
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;
};
}