nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
646 B
Nix
Raw Normal View History

2016-09-21 17:55:38 +02:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name= "nextcloud-${version}";
2018-02-05 21:30:08 +01:00
version = "12.0.5";
2016-09-21 17:55:38 +02:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2018-02-05 21:30:08 +01:00
sha256 = "0hya524d8wqia5v2wz8cmasi526j97z6d0l1h7l7j442wsn2kgn8";
2016-09-21 17:55:38 +02:00
};
installPhase = ''
mkdir -p $out/
cp -R . $out/
2016-09-21 17:55:38 +02:00
'';
meta = {
description = "Sharing solution for files, calendars, contacts and more";
homepage = https://nextcloud.com;
2017-09-29 22:32:33 +02:00
maintainers = with stdenv.lib.maintainers; [ schneefux bachp ];
2016-09-21 17:55:38 +02:00
license = stdenv.lib.licenses.agpl3Plus;
platforms = with stdenv.lib.platforms; unix;
};
}