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-12-21 19:56:54 +00:00
version = "12.0.4";
2016-09-21 16:55:38 +01:00
src = fetchurl {
url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2";
2017-12-21 19:56:54 +00:00
sha256 = "1dh9knqbw6ph2rfrb5rscdraj4375rqddmrifw6adyga9jkn2hb5";
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;
};
}