nixpkgs/pkgs/servers/nextcloud/default.nix

25 lines
646 B
Nix
Raw Normal View History

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