nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
651 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2016-09-21 11:55:38 -04:00
stdenv.mkDerivation rec {
pname = "nextcloud";
version = "16.0.4";
2016-09-21 11:55:38 -04:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${pname}-${version}.tar.bz2";
sha256 = "1l7ckzyqz7g4ny8s2q4xal72p57ldfjs947sk2ya2df93qjh0qz0";
2016-09-21 11:55:38 -04:00
};
installPhase = ''
mkdir -p $out/
cp -R . $out/
2016-09-21 11:55:38 -04: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 11:55:38 -04:00
license = stdenv.lib.licenses.agpl3Plus;
platforms = with stdenv.lib.platforms; unix;
};
}